xref: /aosp_15_r20/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/p9-0x.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
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