summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/fail256.d
blob: 87120e2644f603b5f2c5204519b2855551ebe505 (plain)
1
2
3
4
5
6
7
8
/*
TEST_OUTPUT:
---
fail_compilation/fail256.d(8): Error: incompatible types for (("foo"d) ~ ("bar"c)): 'dstring' and 'string'
---
*/

auto s = "foo"d ~ "bar"c;