blob: fd89bab529d553b553ede169569c91ce110fd6be [file] [log] [blame]
// EXTRA_SOURCES: imports/test41a.d
// PERMUTE_ARGS: -inline -g -O
import imports.test41a;
import core.exception;
int main()
{
try
{
foo();
return 1;
}
catch (AssertError e)
{
}
try
{
func!(void)();
return 1;
}
catch (AssertError e)
{
}
return 0;
}