From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/SemaTemplate/operator-template.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 clang/test/SemaTemplate/operator-template.cpp (limited to 'clang/test/SemaTemplate/operator-template.cpp') diff --git a/clang/test/SemaTemplate/operator-template.cpp b/clang/test/SemaTemplate/operator-template.cpp new file mode 100644 index 0000000..777b0f5 --- /dev/null +++ b/clang/test/SemaTemplate/operator-template.cpp @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +// Make sure we accept this +templatestruct A{typedef X Y;}; +templatebool operator==(A,typename A::Y); // expected-note{{candidate template ignored: failed template argument deduction}} + +int a(A x) { return operator==(x,1); } + +int a0(A x) { return x == 1; } + +// FIXME: the location information for the note isn't very good +templatestruct B{typedef X Y;}; +templatebool operator==(B*,typename B::Y); // \ +// expected-error{{overloaded 'operator==' must have at least one parameter of class or enumeration type}} \ +// expected-note{{in instantiation of function template specialization}} \ +// expected-note{{candidate template ignored: substitution failure [with X = int]}} +int a(B x) { return operator==(&x,1); } // expected-error{{no matching function for call to 'operator=='}} + -- cgit v1.2.3