blob: 4a0bb4d1e4e543728e16da36badafe137fbea6ee [file] [log] [blame]
Richard Smithea698b32011-04-14 21:45:45 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Reid Spencer5f016e22007-07-11 17:01:13 +00002
3char *const_cast_test(const char *var)
4{
5 return const_cast<char*>(var);
6}
7
Reid Spencer5f016e22007-07-11 17:01:13 +00008struct A {
9 virtual ~A() {}
10};
11
12struct B : public A {
13};
14
15struct B *dynamic_cast_test(struct A *a)
16{
17 return dynamic_cast<struct B*>(a);
18}
Reid Spencer5f016e22007-07-11 17:01:13 +000019
20char *reinterpret_cast_test()
21{
22 return reinterpret_cast<char*>(0xdeadbeef);
23}
24
25double static_cast_test(int i)
26{
27 return static_cast<double>(i);
28}
Argyrios Kyrtzidisb348b812008-08-16 19:45:32 +000029
30char postfix_expr_test()
31{
32 return reinterpret_cast<char*>(0xdeadbeef)[0];
Daniel Dunbard7d5f022009-03-24 02:24:46 +000033}
John McCall51e2a5d2010-04-30 03:11:01 +000034
35// This was being incorrectly tentatively parsed.
36namespace test1 {
Richard Smithea698b32011-04-14 21:45:45 +000037 template <class T> class A {}; // expected-note 2{{here}}
John McCall51e2a5d2010-04-30 03:11:01 +000038 void foo() { A<int>(*(A<int>*)0); }
39}
Richard Smithea698b32011-04-14 21:45:45 +000040
41typedef char* c;
42typedef A* a;
43void test2(char x, struct B * b) {
44 (void)const_cast<::c>(&x); // expected-error{{found '<::' after a const_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
45 (void)dynamic_cast<::a>(b); // expected-error{{found '<::' after a dynamic_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
46 (void)reinterpret_cast<::c>(x); // expected-error{{found '<::' after a reinterpret_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
47 (void)static_cast<::c>(&x); // expected-error{{found '<::' after a static_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
48
49 // Do not do digraph correction.
50 (void)static_cast<: :c>(&x); //\
51 expected-error {{expected '<' after 'static_cast'}} \
52 expected-error {{expected expression}}\
53 expected-error {{expected ']'}}\
54 expected-note {{to match this '['}}
55 (void)static_cast<: // expected-error {{expected '<' after 'static_cast'}} \
56 expected-note {{to match this '['}}
57 :c>(&x); // expected-error {{expected expression}} \
58 expected-error {{expected ']'}}
59#define LC <:
60#define C :
61 test1::A LC:B> c; // expected-error {{cannot refer to class template 'A' without a template argument list}} expected-error 2{{}} expected-note{{}}
62 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
63 test1::A<:C B> d; // expected-error {{cannot refer to class template 'A' without a template argument list}} expected-error 2{{}} expected-note{{}}
64 (void)static_cast<:C c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
65
66#define LCC <::
67 test1::A LCC B> e; // expected-error{{found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
68 (void)static_cast LCC c>(&x); // expected-error{{found '<::' after a static_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
69}