Files
clang-p2996/clang-tools-extra/test/cpp11-migrate/no_xform.cpp
Edwin Vane c016c0da12 Turned no_xform into a pass from expected failure.
Since no_xform is not a bug to be fixed, made the test pass using the 'not'
utility and removed XFAIL.

llvm-svn: 176709
2013-03-08 18:39:07 +00:00

7 lines
129 B
C++

// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
// RUN: not cpp11-migrate %t.cpp --
int main(int argc, char** argv) {
return 0;
}