aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/dcl.decl/dcl.init/dcl.init.ref/p5-examples.cpp
blob: d757adf6986c30838ed3868aeb0afd990db9029e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// RUN: %clang_cc1 -ast-dump %s 2>&1 | FileCheck %s

// CHECK: example0
void example0() {
  double d = 2.0;
  // CHECK: double &rd =
  // CHECK-NEXT: DeclRefExpr
  double &rd = d;
  // CHECK: double const &rcd =
  // CHECK-NEXT: ImplicitCastExpr{{.*}}'double const' <NoOp>
  const double &rcd = d;
}

struct A { };
struct B : A { } b;

// CHECK: example1
void example1() {
  // CHECK: A &ra =
  // CHECK: ImplicitCastExpr{{.*}}'struct A' <DerivedToBase> lvalue
  A &ra = b;
  // CHECK: A const &rca =
  // CHECK: ImplicitCastExpr{{.*}}'struct A const' <NoOp>
  // CHECK: ImplicitCastExpr{{.*}}'struct A' <DerivedToBase>
  const A& rca = b;
}

extern B f();

struct X {
  operator B();
} x;

// CHECK: example2
void example2() {
  // CHECK: A const &rca =
  // CHECK: ImplicitCastExpr{{.*}}'struct A const' <NoOp>
  // CHECK: ImplicitCastExpr{{.*}}'struct A' <DerivedToBase>
  // CHECK: CallExpr{{.*}}B
  const A &rca = f(); 
  // CHECK: A const &r =
  // CHECK: ImplicitCastExpr{{.*}}'struct A const' <NoOp>
  // CHECK: ImplicitCastExpr{{.*}}'struct A' <DerivedToBase>
  // CHECK: CXXMemberCallExpr{{.*}}'struct B'
  const A& r = x;
}

// CHECK: example3
void example3() {
  // CHECK: double const &rcd2 =
  // CHECK: ImplicitCastExpr{{.*}}<IntegralToFloating>
  const double& rcd2 = 2; 
}