d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / mixin.d
blobd96eae140935ce4396cf7bd7a984f5159bdfc23d
1 /*
2 REQUIRED_ARGS: -mixin=${RESULTS_DIR}/runnable/mixin.mixin -o-
3 OUTPUT_FILES: ${RESULTS_DIR}/runnable/mixin.mixin
5 TEST_OUTPUT:
6 ----
7 === ${RESULTS_DIR}/runnable/mixin.mixin
8 // expansion at compilable/mixin.d(14)
9 int x =
10 123;
12 int y;
16 int z = x + y;
17 ----
19 https://issues.dlang.org/show_bug.cgi?id=1870
20 https://issues.dlang.org/show_bug.cgi?id=12790
23 #line 1
24 string get()
26 return "int x =\n 123;\r\n" ~
28 int y;
32 int z = x + y;};
35 void main()
37 mixin(get());