PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / pr60390.C
blob38d0e4bd6cd333b7c57a14697fbcbe1e8058b357
1 // PR c++/60390
2 // { dg-do compile { target c++14 } }
3 // { dg-options "" }
5 struct A
7   void foo (auto);
8 };
10 class B
12   int m;
13   friend void A::foo (auto);
16 void A::foo (auto i)
18   B b;
19   b.m = i;
22 int main ()
24   A a;
25   a.foo (7);