mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
248 B
D
10 lines
248 B
D
// https://issues.dlang.org/show_bug.cgi?id=14277
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail14277.d(10): Error: cannot implicitly convert expression `new char[](9999$?:32=u|64=LU$)` of type `char[]` to `ubyte[]`
|
|
---
|
|
*/
|
|
|
|
ubyte[] u = new char[9999];
|