summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-09-ConstructorTypeSafety.cpp
blob: e6c09e5bfe146ca57cfb689d59ad9130e0d7fcfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// The code generated for this testcase should be completely typesafe!
// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | \
// RUN:    notcast

struct contained {
  unsigned X;
  contained();
};

struct base {
  unsigned A, B;
};

struct derived : public base {
  contained _M_value_field;
};

int test() {
  derived X;
}