mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
277 B
Makefile
8 lines
277 B
Makefile
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail257.d(8): Error: incompatible types for `("foo"d) == ("bar"c)`: `dstring` and `string`
|
|
fail_compilation/fail257.d(8): while evaluating `pragma(msg, "foo"d == "bar"c ? "A" : "B")`
|
|
---
|
|
*/
|
|
pragma(msg, "foo"d == "bar"c ? "A" : "B");
|