diff options
Diffstat (limited to 'test/C++Frontend/2006-09-27-Debug-Protection.cpp')
-rw-r--r-- | test/C++Frontend/2006-09-27-Debug-Protection.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/C++Frontend/2006-09-27-Debug-Protection.cpp b/test/C++Frontend/2006-09-27-Debug-Protection.cpp deleted file mode 100644 index d9a25aa70e..0000000000 --- a/test/C++Frontend/2006-09-27-Debug-Protection.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,} -// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,} - -class A { -public: - int x; -protected: - int y; -private: - int z; -}; - -A a; |