blob: 3a00b7122e8310946c36142177f6c6cb227e09fa [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify -std=c++11
Chandler Carruth6614b2d2010-05-13 12:04:17 +00002
3struct X {};
4typedef X foo_t;
5
6foo_t *ptr;
7char c1 = ptr; // expected-error{{'foo_t *' (aka 'X *')}}
8
9const foo_t &ref = foo_t();
Chris Lattner0c42bb62010-09-05 00:17:29 +000010char c2 = ref; // expected-error{{'const foo_t' (aka 'const X')}}
Richard Smith34b41d92011-02-20 03:19:35 +000011
12// deduced auto should not produce an aka.
13auto aut = X();
14char c3 = aut; // expected-error{{from 'X' to 'char'}}
Chandler Carruth0673cb32011-07-11 17:49:21 +000015
16// There are two classes named Foo::foo here. Make sure the message gives
17// a way to them apart.
18namespace Foo {
19 class foo {};
20}
21
22namespace bar {
23 namespace Foo {
24 class foo;
25 }
26 void f(Foo::foo* x); // expected-note{{passing argument to parameter 'x' here}}
27}
28
29void test(Foo::foo* x) {
Richard Trieu2fe9b7f2011-12-15 00:38:15 +000030 bar::f(x); // expected-error{{cannot initialize a parameter of type 'Foo::foo *' (aka 'bar::Foo::foo *') with an lvalue of type 'Foo::foo *'}}
Chandler Carruth0673cb32011-07-11 17:49:21 +000031}
32
Richard Trieuecb912e2011-11-14 19:39:25 +000033namespace ns {
34 struct str {
35 static void method(struct data *) {}
36 };
37}
38
39struct data { int i; };
40
41typedef void (*callback)(struct data *);
42
Matt Beaumont-Gay712692e2012-06-28 19:20:41 +000043void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument}}
Richard Trieuecb912e2011-11-14 19:39:25 +000044
45void test() {
46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}
47}