blob: c1f9a5c92338b443fed02b0ce908ab258655ed21 [file] [log] [blame]
// { dg-additional-options "-fmodules-ts" }
module baz;
int Square (int a)
{
return Prod (a, a);
}
float Square (int a, int b)
{
return a * b * 1.5f;
}