mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
252 B
D
13 lines
252 B
D
// REQUIRED_ARGS: -o-
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice15688.d(12): Error: undefined identifier `mappings`
|
|
fail_compilation/ice15688.d(12): Error: function expected before `()`, not `0` of type `int`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
(mappings, 0)();
|
|
}
|