xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/p8-0x.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
2 
3 auto f() -> int[32]; // expected-error{{function cannot return array}}
4 auto g() -> int(int); // expected-error{{function cannot return function}}
5 auto h() -> auto() -> int; // expected-error{{function cannot return function}}
6 auto i() -> auto(*)() -> int;
7