mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
169 B
D
13 lines
169 B
D
// REQUIRED_ARGS: -vcolumns
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/testCols.d(12,5): Error: undefined identifier `nonexistent`
|
|
---
|
|
*/
|
|
|
|
void test()
|
|
{
|
|
nonexistent();
|
|
}
|