diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-12-13 08:01:53 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-12-13 08:01:53 +0000 |
commit | 78494f50e5b2f17b44dcd1462d01d43255a08341 (patch) | |
tree | ff1e4a626beb95b2afc839aff89b703677d5aea8 | |
parent | 79db357d801602962f41eac0769f15d789cc1c80 (diff) | |
download | bcm5719-llvm-78494f50e5b2f17b44dcd1462d01d43255a08341.tar.gz bcm5719-llvm-78494f50e5b2f17b44dcd1462d01d43255a08341.zip |
Remove a type that got reduced away from this test case but not actually deleted.
llvm-svn: 121694
-rw-r--r-- | clang/test/SemaCXX/return-stack-addr.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/return-stack-addr.cpp b/clang/test/SemaCXX/return-stack-addr.cpp index b4d9b9037d5..fbbaf836f1a 100644 --- a/clang/test/SemaCXX/return-stack-addr.cpp +++ b/clang/test/SemaCXX/return-stack-addr.cpp @@ -123,7 +123,6 @@ void test_PR7999(PR7999_X& x) { (void)PR7999_f(x); } // no-warning // variables with an initializer, especially in templates where the default // argument may not be an expression (yet). namespace PR8774 { - template <typename T> class A { }; template <typename U> struct B { }; template <typename V> V f(typename B<V>::type const &v = B<V>::value()) { return v; |