p9-0x.cpp revision a971d2410fabb093954c4119d2287ac24208ea8d
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.
7auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}} expected-error {{without trailing return type}}
8