aboutsummaryrefslogtreecommitdiff
path: root/test/Tooling/clang-ast-dump.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tooling/clang-ast-dump.cpp')
-rw-r--r--test/Tooling/clang-ast-dump.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Tooling/clang-ast-dump.cpp b/test/Tooling/clang-ast-dump.cpp
deleted file mode 100644
index 3847bc6fad..0000000000
--- a/test/Tooling/clang-ast-dump.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c 2>&1 | FileCheck %s
-
-// FIXME: Does this run regardless of +Asserts?
-// REQUIRES: asserts
-
-// CHECK: <CXXMethod ptr="0x{{[0-9a-f]+}}" name="theMethod" prototype="true">
-// CHECK: <ParmVar ptr="0x{{[0-9a-f]+}}" name="x" initstyle="c">
-// CHECK: (CompoundStmt
-// CHECK-NEXT: (ReturnStmt
-// CHECK-NEXT: (BinaryOperator
-
-namespace test_namespace {
-
-class TheClass {
-public:
- int theMethod(int x) {
- return x + x;
- }
-};
-
-}