Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -fsyntax-only -verify |
Eli Friedman | 16c5378 | 2009-12-04 07:18:51 +0000 | [diff] [blame] | 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 |