blob: 59be9f50f6182bb9249307aeaad7234a0c7376a2 [file] [log] [blame]
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001// RUN: clang -fsyntax-only -verify -std=c++0x %s
2
3typedef int&& irr;
4typedef irr& ilr_c1; // Collapses to int&
5typedef int& ilr;
6typedef ilr&& ilr_c2; // Collapses to int&
7
8irr ret_irr() {
9 return 0;
10}
11
12struct not_int {};
13
14int over(int&);
15not_int over(int&&);
16
Douglas Gregor2ff44782009-03-20 20:21:37 +000017int over2(const int&);
18not_int over2(int&&);
19
20struct conv_to_not_int_rvalue {
21 operator not_int &&();
22};
23
Sebastian Redl7c80bd62009-03-16 23:22:08 +000024void f() {
25 int &&virr1; // expected-error {{declaration of reference variable 'virr1' requires an initializer}}
26 int &&virr2 = 0;
Douglas Gregor2ff44782009-03-20 20:21:37 +000027 int &&virr3 = virr2; // expected-error {{rvalue reference cannot bind to lvalue}}
Sebastian Redl7c80bd62009-03-16 23:22:08 +000028 int i1 = 0;
29 int &&virr4 = i1; // expected-error {{rvalue reference cannot bind to lvalue}}
30 int &&virr5 = ret_irr();
Sebastian Redl157be832009-03-22 22:30:06 +000031 int &&virr6 = static_cast<int&&>(i1);
32 (void)static_cast<not_int&&>(i1); // expected-error {{types are not compatible}}
Sebastian Redl7c80bd62009-03-16 23:22:08 +000033
34 int i2 = over(i1);
35 not_int ni1 = over(0);
36 int i3 = over(virr2);
37 not_int ni2 = over(ret_irr());
38
Douglas Gregor2ff44782009-03-20 20:21:37 +000039 int i4 = over2(i1);
40 // not_int ni3 = over2(0); FIXME: this should be well-formed.
41
Sebastian Redl7c80bd62009-03-16 23:22:08 +000042 ilr_c1 vilr1 = i1;
43 ilr_c2 vilr2 = i1;
Douglas Gregor2ff44782009-03-20 20:21:37 +000044
45 conv_to_not_int_rvalue cnir;
46 not_int &&ni4 = cnir;
47 not_int &ni5 = cnir; // expected-error{{non-const lvalue reference to type 'struct not_int' cannot be initialized with a value of type 'struct conv_to_not_int_rvalue'}}
Sebastian Redl7c80bd62009-03-16 23:22:08 +000048}