mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
402 B
D
15 lines
402 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/trait_loc_err.d(13): Error: can only get the location of a symbol, not `trait_loc_err`
|
|
fail_compilation/trait_loc_err.d(14): Error: can only get the location of a symbol, not `stdc`
|
|
---
|
|
*/
|
|
module trait_loc_err;
|
|
import core.stdc.stdio;
|
|
|
|
void main()
|
|
{
|
|
__traits(getLocation, __traits(parent, main));
|
|
__traits(getLocation, __traits(parent, core.stdc.stdio));
|
|
}
|