p8-0x.cpp revision 762bb9d0ad20320b9f97a841dce57ba5e8e48b07
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
2
3auto f() -> int[32]; // expected-error{{function cannot return array}}
4auto g() -> int(int); // expected-error{{function cannot return function}}
5auto h() -> auto() -> int; // expected-error{{function cannot return function}}
6auto i() -> auto(*)() -> int;
7