1 | // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s |
---|---|
2 | |
3 | // FIXME: We should catch the case of tag with an incomplete type here (which |
4 | // will necessarily be ill-formed as a trailing return type for a function |
5 | // definition), and recover with a "type cannot be defined in a trailing return |
6 | // type" error. |
7 | auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}} |
8 |