forked from OSchip/llvm-project
9 lines
175 B
C
9 lines
175 B
C
|
// RUN: clang -fsyntax-only -verify -pedantic %s
|
||
|
|
||
|
|
||
|
// PR2241
|
||
|
float f[] = {
|
||
|
1e, // expected-error {{exponent}}
|
||
|
1ee0 // expected-error {{exponent}}
|
||
|
};
|