blob: 34a8c854a6b6d658ccd93c6825f0b60847cb4a58 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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}}
|