blob: 1e25eb2202da1a7c2e0a84488292de0ab451a40b [file] [log] [blame]
// { dg-do compile { target c++11 } }
typedef int IA[2];
typedef double DA[2];
void f(const IA&) { }
void f(const DA&);
int main()
{
f({1,2});
}