You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
312 B
7 lines
312 B
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
|
|
|
auto f() -> int[32]; // expected-error{{function cannot return array}}
|
|
auto g() -> int(int); // expected-error{{function cannot return function}}
|
|
auto h() -> auto() -> int; // expected-error{{function cannot return function}}
|
|
auto i() -> auto(*)() -> int;
|