blob: 91e55578d9bad17adc9a96485911da3bf7d77be6 [file] [log] [blame]
// PR c++/37967
// Negative test for auto
// { dg-do compile { target c++11 } }
auto f1 () -> int;
auto f2 (); // { dg-error "without trailing return type" }
int f3 () -> int; // { dg-error "trailing return type" }
auto *f4 () -> int; // { dg-error "trailing return type" }
struct A
{
auto f5 () const -> int;
auto f6 (); // { dg-error "without trailing return type" }
int f7 () -> int; // { dg-error "trailing return type" }
auto *f8 () -> int; // { dg-error "trailing return type" }
};