aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/launder6.h
blob: eca2ad46f18648637e2b8b41dd46ccc9428ad739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GCC_TEST_LAUNDER6_H
#define GCC_TEST_LAUNDER6_H

struct A
{
  int& x;
};

struct B
{
  A a;
};

void f(B& b);

#endif