Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail256.d
blob: ce182e4734900b50c96ab8218fb4ebcc978087b3 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail256.d(8): Error: incompatible types for `("foo"d) ~ ("bar"c)`: `dstring` and `string`
---
*/
auto
s
=
"foo"
d
~
"bar"
c
;