mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
13 lines
153 B
D
13 lines
153 B
D
int g;
|
|
|
|
void fun(R)(auto ref int a, auto ref R r = g, auto ref int b = 1)
|
|
{
|
|
++r;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
fun(10, 2);
|
|
fun(10);
|
|
assert(g == 1);
|
|
}
|