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.
10 lines
402 B
10 lines
402 B
4 months ago
|
// RUN: grep -Ev "// *[A-Z0-9_]+:" %s \
|
||
|
// RUN: | clang-format -style=llvm -assume-filename=foo.js \
|
||
|
// RUN: | FileCheck -strict-whitespace -check-prefix=CHECK1 %s
|
||
|
// RUN: grep -Ev "// *[A-Z0-9_]+:" %s \
|
||
|
// RUN: | clang-format -style=llvm -assume-filename=foo.cpp \
|
||
|
// RUN: | FileCheck -strict-whitespace -check-prefix=CHECK2 %s
|
||
|
// CHECK1: {{^a >>>= b;$}}
|
||
|
// CHECK2: {{^a >> >= b;$}}
|
||
|
a >>>= b;
|