Eli Friedman | 16c5378 | 2009-12-04 07:18:51 +0000 | [diff] [blame] | 1 | // RUN: clang-cc %s -fsyntax-only -verify |
2 | // PR5543 | ||||
3 | |||||
4 | struct A { int x; union { int* y; float& z; }; }; struct B : A {int a;}; | ||||
5 | int* a(B* x) { return x->y; } | ||||
6 | |||||
7 | struct x { union { int y; }; }; x y; template <int X> int f() { return X+y.y; } | ||||
8 | int g() { return f<2>(); } | ||||
9 |