2 /* { dg-do compile } */
6 explicit class1(double a) { data = a; }
12 class2(class1 a, float t) { }
13 class2(float t, class1 a) { }
19 // Used to get: error: type specifier omitted for parameter `t2'
20 class2 h(class1(double(pir)), t2);
21 class2 i(class1(pir), t2);