dmd/compiler/test/compilable/test21832.d
2022-07-09 18:53:07 +02:00

13 lines
272 B
D

// REQUIRED_ARGS: -de
// EXTRA_FILES: imports/imp21832.d
int test21832a()
{
import imports.imp21832 : fun; // function 'fun' is deprecated
return fun(0);
}
int test21832b()
{
import imports.imp21832 : tpl; // template 'tpl' is deprecated
return tpl(0);
}