mirror of
https://github.com/dlang/dmd.git
synced 2025-05-10 14:07:57 +03:00
11 lines
131 B
D
11 lines
131 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation\fail136.d(10): Error: `"\xef\xbb\xbf"` has no effect
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
x"EF BB BF";
|
|
}
|