1 // { dg-do run { target c++14 } }
2 
3 int i;
f()4 auto& f() { return i; }
5 
main()6 int main()
7 {
8   f() = 42;
9   return i != 42;
10 }
11