Ok, here it is.
This is the start situation:
boven:~ # fdisk -l
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10EZEX-60W
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 0AAF3B2B-2BCB-41BF-841D-C0E6A627F6E7
Device Start End Sectors Size Type
/dev/sda1 2048 534527 532480 260M EFI System
/dev/sda2 534528 17317887 16783360 8G Microsoft basic data
/dev/sda3 17317888 59262975 41945088 20G Microsoft basic data
/dev/sda4 59262976 478689279 419426304 200G Microsoft basic data
boven:~ #
Added a bind mount entry to /etc/fstab and mounted it.
boven:~ # cat /etc/fstab
UUID=7dc53b12-93a9-4e97-b0ae-ab165a8bd688 / ext4 acl,user_xattr 1 1
UUID=212ea772-7bec-4bee-85b5-786f7a810356 swap swap defaults 0 0
UUID=A626-CF2D /boot/efi vfat umask=0002,utf8=true 0 0
UUID=8c561c1d-e51f-4eb9-a28a-92b3a98df5be /home ext4 defaults 1 2
tmpfs /tmp tmpfs size=25%,uid=root,gid=root,mode=1777 0 0
/home/wij /home/henk/wij none bind
boven:~ # mount | grep '/dev'
devtmpfs on /dev type devtmpfs (rw,nosuid,size=4001676k,nr_inodes=1000419,mode=755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
/dev/sda3 on / type ext4 (rw,relatime,data=ordered)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
/dev/sda1 on /boot/efi type vfat (rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
/dev/sda4 on /home type ext4 (rw,relatime,data=ordered)
/dev/sda4 on /home/henk/wij type ext4 (rw,relatime,data=ordered)
boven:~ #
Then I used YaST > Partitioner to create a new partition /dev/sda5, made an ext4 file system on it and set it to mount (now and on boot) on /mnt.
boven:~ # fdisk -l
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10EZEX-60W
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 0AAF3B2B-2BCB-41BF-841D-C0E6A627F6E7
Device Start End Sectors Size Type
/dev/sda1 2048 534527 532480 260M EFI System
/dev/sda2 534528 17317887 16783360 8G Microsoft basic data
/dev/sda3 17317888 59262975 41945088 20G Microsoft basic data
/dev/sda4 59262976 478689279 419426304 200G Microsoft basic data
/dev/sda5 478689280 489175039 10485760 5G Linux filesystem
boven:~ #
It is there, but look in /etc/fstab:
boven:~ # cat /etc/fstab
UUID=7dc53b12-93a9-4e97-b0ae-ab165a8bd688 / ext4 acl,user_xattr 1 1
UUID=212ea772-7bec-4bee-85b5-786f7a810356 swap swap defaults 0 0
UUID=A626-CF2D /boot/efi vfat umask=0002,utf8=true 0 0
UUID=8c561c1d-e51f-4eb9-a28a-92b3a98df5be /home ext4 defaults 1 2
tmpfs /tmp tmpfs size=25%,uid=root,gid=root,mode=1777 0 0
UUID=e54b13d3-2b73-40ad-b502-00e99c1ad2c6 /mnt ext4 defaults 0 2
boven:~ #
The bind mount entry is indeed gone!
boven:~ # mount | grep '/dev'
devtmpfs on /dev type devtmpfs (rw,nosuid,size=4001676k,nr_inodes=1000419,mode=755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
/dev/sda3 on / type ext4 (rw,relatime,data=ordered)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
/dev/sda1 on /boot/efi type vfat (rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
/dev/sda4 on /home type ext4 (rw,relatime,data=ordered)
/dev/sda4 on /home/henk/wij type ext4 (rw,relatime,data=ordered)
/dev/sda5 on /mnt type ext4 (rw,relatime,data=ordered)
boven:~ #
shows that the bind mount is still active, as is the new file system. But I have no doubt that the bind mount will not be reestablished at e new boot:(