summaryrefslogtreecommitdiffstats
path: root/test/Misc/diag-aka-types.cpp
blob: 7233c4e85b49998628faede7c66a3fa36b685ba2 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 %s -fsyntax-only -verify

struct X {};
typedef X foo_t;

foo_t *ptr;
char c1 = ptr; // expected-error{{'foo_t *' (aka 'X *')}}

const foo_t &ref = foo_t();
char c2 = ref; // expected-error{{'foo_t const' (aka 'X const')}}
OpenPOWER on IntegriCloud