Welcome to mirror list, hosted at ThFree Co, Russian Federation.

member-expr-anonymous-union.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e35eb2b14d7d2250f352d5f1a9fc29658dfd8aa (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -fsyntax-only -verify
// PR5543

struct A { int x; union { int* y; float* z; }; }; struct B : A {int a;};
int* a(B* x) { return x->y; }

struct x { union { int y; }; }; x y; template <int X> int f() { return X+y.y; }
int g() { return f<2>(); }