Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / unknown-anytype.cpp
blob3a5361e0b559211c5ea210760f5a072dec2c0073
1 // RUN: %clang_cc1 -funknown-anytype -fsyntax-only -verify %s
3 namespace test0 {
4 extern __unknown_anytype test0;
5 extern __unknown_anytype test1();
6 extern __unknown_anytype test2(int);
9 namespace test1 {
10 extern __unknown_anytype foo;
11 int test() {
12 // TODO: it would be great if the 'cannot initialize' errors
13 // turned into something more interesting. It's just a matter of
14 // making sure that these locations check for placeholder types
15 // properly.
17 int x = foo; // expected-error {{'foo' has unknown type}}
18 int y = 0 + foo; // expected-error {{'foo' has unknown type}}
19 return foo; // expected-error {{'foo' has unknown type}}
23 namespace test2 {
24 extern __unknown_anytype foo();
25 void test() {
26 foo(); // expected-error {{'foo' has unknown return type}}
30 namespace test3 {
31 extern __unknown_anytype foo;
32 void test() {
33 foo(); // expected-error {{call to unsupported expression with unknown type}}
34 ((void(void)) foo)(); // expected-error {{variable 'foo' with unknown type cannot be given a function type}}
38 namespace test4 {
39 extern __unknown_anytype test0(...);
40 extern __unknown_anytype test1(...);
42 void test() {
43 void (*fn)(int) = (void(*)(int)) test0;
44 int x = (int) test1; // expected-error {{function 'test1' with unknown type must be given a function type}}
48 namespace test5 {
49 template<typename T> struct X; // expected-note{{template is declared here}}
51 extern __unknown_anytype test0(...);
53 void test() {
54 (X<int>)test0(); // expected-error{{implicit instantiation of undefined template 'test5::X<int>'}}
58 namespace test6 {
59 extern __unknown_anytype func();
60 extern __unknown_anytype var;
61 double *d;
63 void test() {
64 d = (double*)&func(); // expected-error{{address-of operator cannot be applied to a call to a function with unknown return type}}
65 d = (double*)&var;