mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
161 B
D
8 lines
161 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail256.d(8): Error: incompatible types for `("foo"d) ~ ("bar"c)`: `dstring` and `string`
|
|
---
|
|
*/
|
|
|
|
auto s = "foo"d ~ "bar"c;
|