Janis Danisevskis | 112c9cc | 2016-03-31 13:35:25 +0100 | [diff] [blame] | 1 | # 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 |