// RUN: clang-cc -fsyntax-only -std=c++0x -verify %s template struct TryCatch0 { void f() { try { } catch (T&&) { // expected-error 2{{cannot catch exceptions by rvalue reference}} } } }; template struct TryCatch0; // okay template struct TryCatch0; // expected-note{{instantiation}} template struct TryCatch0; // expected-note{{instantiation}}