]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/ice15688.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice15688.d
CommitLineData
b4c522fa
IB
1// REQUIRED_ARGS: -o-
2/*
3TEST_OUTPUT:
4---
5fail_compilation/ice15688.d(12): Error: undefined identifier `mappings`
5fee5ec3 6fail_compilation/ice15688.d(12): Error: function expected before `()`, not `0` of type `int`
b4c522fa
IB
7---
8*/
9
10void main()
11{
12 (mappings, 0)();
13}