1 // PR c++/88825
2 // { dg-do compile { target c++14 } }
3 
4 auto f () -> auto *
5 {
6   int t = 0;
7   return t; // { dg-error "unable to deduce" }
8 }
9