mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
175 B
D
14 lines
175 B
D
/*
|
|
PERMUTE_ARGS:
|
|
|
|
https://issues.dlang.org/show_bug.cgi?id=17123
|
|
*/
|
|
|
|
void test()
|
|
{
|
|
char[256] buffer;
|
|
|
|
char[] delegate() read = () {
|
|
return buffer[];
|
|
};
|
|
}
|