mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
137 B
D
13 lines
137 B
D
// REQUIRED_ARGS: -o-
|
|
// PERMUTE_ARGS:
|
|
|
|
T foo(T)()
|
|
{
|
|
__gshared int[] bar = [];
|
|
return T.init;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
foo!char();
|
|
}
|