diff options
Diffstat (limited to 'clang/test/CXX/temp/temp.param/p3.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.param/p3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/temp/temp.param/p3.cpp b/clang/test/CXX/temp/temp.param/p3.cpp index 67d648ea97b..a48702d6628 100644 --- a/clang/test/CXX/temp/temp.param/p3.cpp +++ b/clang/test/CXX/temp/temp.param/p3.cpp @@ -15,7 +15,7 @@ template<template<class T> class Y> struct X1 { // could be interpreted as either a non-type template-parameter or a // type-parameter (because its identifier is the name of an already // existing class) is taken as a type-parameter. For example, -class T { /* ... */ }; // expected-note{{candidate function}} +class T { /* ... */ }; // expected-note{{candidate is the implicit copy constructor}} int i; template<class T, T i> struct X2 { |