diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-09-14 16:38:59 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-09-14 16:38:59 +0000 |
commit | 8beb26e4fa3493fe1772f1b7c88de99cbaf2e438 (patch) | |
tree | 41f445d9e41b243c019ce77818ffe62164bf6440 | |
parent | ad45ad6fe981a91b9f65f719408b2bf082310721 (diff) | |
download | bcm5719-llvm-8beb26e4fa3493fe1772f1b7c88de99cbaf2e438.tar.gz bcm5719-llvm-8beb26e4fa3493fe1772f1b7c88de99cbaf2e438.zip |
Add missing test from r163874.
llvm-svn: 163910
-rw-r--r-- | clang/test/SemaCXX/attr-unused.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/attr-unused.cpp b/clang/test/SemaCXX/attr-unused.cpp new file mode 100644 index 00000000000..b74bc915ce0 --- /dev/null +++ b/clang/test/SemaCXX/attr-unused.cpp @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -verify -Wunused -Wused-but-marked-unused -fsyntax-only %s + +namespace ns_unused { typedef int Int_unused __attribute__((unused)); } +namespace ns_not_unused { typedef int Int_not_unused; } + +void f() { + ns_not_unused::Int_not_unused i1; // expected-warning {{unused variable}} + ns_unused::Int_unused i0; // expected-warning {{'Int_unused' was marked unused but was used}} +} |