mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
198 B
D
9 lines
198 B
D
// REQUIRED_ARGS: -m64
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19757_m64.d(9): Error: cannot implicitly convert expression `"oops"` of type `string` to `ulong`
|
|
---
|
|
*/
|
|
|
|
auto s = new string("oops");
|