Restic 0.16 windows - include does not work

Restic 0.16 does not include directory with [ ] characters

restic -r test init
created restic repository 889347d7ab at test

Please note that knowledge of your password is required to access
the repository. Losing your password means that your data is
irrecoverably lost.

D:\>restic -r test backup "restic[test]"
repository 889347d7 opened (version 2, compression level max)
created new cache in C:\Users\asd\AppData\Local\restic
no parent snapshot found, will read all files

Files:           2 new,     0 changed,     0 unmodified
Dirs:            1 new,     0 changed,     0 unmodified
Added to the repository: 44.203 MiB (20.085 MiB stored)

processed 2 files, 44.200 MiB in 0:01
snapshot 22454fc8 saved

D:\>restic -r test backup restic[test]
repository 889347d7 opened (version 2, compression level max)
using parent snapshot 22454fc8

Files:           0 new,     0 changed,     2 unmodified
Dirs:            0 new,     0 changed,     1 unmodified
Added to the repository: 0 B   (0 B   stored)

processed 2 files, 44.200 MiB in 0:00
snapshot 5eb0e291 saved

D:\>restic -r test backup --files-from in.txt
pattern "D:\\restic[test]" does not match any files, skipping
Fatal: nothing to backup, please specify target files/dirs
D:\>restic -r test backup d:\restic[test]
repository 889347d7 opened (version 2, compression level max)
no parent snapshot found, will read all files

Files:           2 new,     0 changed,     0 unmodified
Dirs:            2 new,     0 changed,     0 unmodified
Added to the repository: 296 B (253 B stored)

processed 2 files, 44.200 MiB in 0:00
snapshot 5c865da7 saved

in.txt

D:\restic[test]

Square brackets have to be escaped, see the discussion in Restic won't find/restore files using --include containing square brackets in name (Windows) · Issue #3658 · restic/restic · GitHub for details.

The following pattern should work:

D:\restic[[]test]