blob: c2dc9411b548ad18d0a4f98bc3ab91470017a9e8 [file] [log] [blame]
// excess errors test - XFAIL
// ecgs-bugs 1999-02-22 14:26 Stefan Schwarzer
// sts@ica1.uni-stuttgart.de
// partial ordering problem in egcs <= 1.1.1
template<class T>
int f(T &){ return 1; }
template<class T>
int f( T[] ){ return 0; }
int main(){
int d[] ={2};
return f(d);
}