blob: 34a8c854a6b6d658ccd93c6825f0b60847cb4a58 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct A { };
A::A (enum { e1 }) {} // expected-error{{can not be defined in a parameter}} \
// expected-error{{out-of-line definition}}
void A::f(enum { e2 }) {} // expected-error{{can not be defined in a parameter}} \
// expected-error{{out-of-line definition}}
enum { e3 } A::g() { } // expected-error{{can not be defined in the result type}} \
// expected-error{{out-of-line definition}}