mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
210 B
D
12 lines
210 B
D
module b19002;
|
|
|
|
void printf(scope const char* format){}
|
|
|
|
void main()
|
|
{
|
|
printf(__FILE__);
|
|
printf(__FILE_FULL_PATH__);
|
|
printf(__FUNCTION__);
|
|
printf(__PRETTY_FUNCTION__);
|
|
printf(__MODULE__);
|
|
}
|