blob: 1d1fbedf0ac053bc137565248a8624ca4154631d [file] [log] [blame]
Janis Danisevskis112c9cc2016-03-31 13:35:25 +01001# These are tests of \C that do not involve UTF. They are not run when \C is
2# disabled by compiling with --enable-never-backslash-C.
3
4/\C+\D \C+\d \C+\S \C+\s \C+\W \C+\w \C+. \C+\R \C+\H \C+\h \C+\V \C+\v \C+\Z \C+\z \C+$/Bx
5
6/\D+\C \d+\C \S+\C \s+\C \W+\C \w+\C .+\C \R+\C \H+\C \h+\C \V+\C \v+\C a+\C \n+\C \C+\C/Bx
7
8/ab\Cde/never_backslash_c
9
10/ab\Cde/info
11 abXde
12
13/(?<=ab\Cde)X/
14 abZdeX
15
16# End of testinput21