Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp1y / pr60390.C
blob5cd5539f82e81bb92cd87592ef5fc686d34958d6
1 // PR c++/60390
2 // { dg-do compile { target c++1y } }
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);