mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
23 lines
306 B
D
23 lines
306 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail228.d(22): Error: undefined identifier `localVariable`
|
|
---
|
|
*/
|
|
|
|
//import core.stdc.stdio : printf;
|
|
|
|
int ToTypeString(T : int)()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int ToTypeString(T : string)()
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
auto x = ToTypeString!(typeof(localVariable))();
|
|
}
|