aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/member-init-union.cpp
blob: 2c50e18b6ffa8f80ad87e55e81b6ba178f22d459 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 %s -emit-llvm-only -verify

union x {
  int a;
  float b;
  x(float y) : b(y) {}
  x(int y) : a(y) {}
};
x a(1), b(1.0f);