1 // PR c++/85240
2 // { dg-do compile { target c++14 } }
3 
4 auto foo();
5 
bar()6 void bar()
7 {
8   using ::foo;
9 }
10