aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr100106.c
blob: 7f98b4f992e01f6e265f1e8ff8fe7424be988e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
union a {
  float _Complex b;
  long long c;
};

void g(union a);

void e() {
  union a f = {1.0f};
  g(f);
}