mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
335 B
D
18 lines
335 B
D
/*
|
|
REQUIRED_ARGS: -profile=gc
|
|
RUN_OUTPUT:
|
|
---
|
|
bytes allocated, allocations, type, function, file:line
|
|
96 1 ubyte profilegc_stdout.main runnable/profilegc_stdout.d:17
|
|
---
|
|
*/
|
|
|
|
import core.runtime;
|
|
|
|
void main()
|
|
{
|
|
// test that stdout output works
|
|
profilegc_setlogfilename("");
|
|
|
|
ubyte[] arr = new ubyte[64];
|
|
}
|