blob: 89cae03af08f16627675d640c81d075a5002fdba [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -std=c++11 -verify %s
Douglas Gregor2f2433f2009-05-18 21:08:14 +00002
3template<typename T> struct TryCatch0 {
4 void f() {
5 try {
6 } catch (T&&) { // expected-error 2{{cannot catch exceptions by rvalue reference}}
7 }
8 }
9};
10
11template struct TryCatch0<int&>; // okay
12template struct TryCatch0<int&&>; // expected-note{{instantiation}}
13template struct TryCatch0<int>; // expected-note{{instantiation}}
14
Douglas Gregorc41b8782011-07-06 18:14:43 +000015
16namespace PR10232 {
17 template <typename T>
18 class Templated {
19 struct Exception {
20 private:
21 Exception(const Exception&); // expected-note{{declared private here}}
22 };
23 void exception() {
24 try {
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
26 }
27 }
28 };
29
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
31}