d: Merge dmd. druntime e770945277, phobos 6d6e0b9b9
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / interpolatedexpressionsequence_postfix.d
blobc915c446b49907fd63958964127cc48a99a02565
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/interpolatedexpressionsequence_postfix.d(10): Error: String postfixes on interpolated expression sequences are not allowed.
4 fail_compilation/interpolatedexpressionsequence_postfix.d(11): Error: String postfixes on interpolated expression sequences are not allowed.
5 fail_compilation/interpolatedexpressionsequence_postfix.d(12): Error: String postfixes on interpolated expression sequences are not allowed.
6 ---
7 */
8 void main() {
9 // all postfixes are banned
10 auto c = i"foo"c;
11 auto w = i"foo"w;
12 auto d = i"foo"d;