github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
424 B

  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. /\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
  4. /\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
  5. /ab\Cde/never_backslash_c
  6. /ab\Cde/info
  7. abXde
  8. /(?<=ab\Cde)X/
  9. abZdeX
  10. # End of testinput21