blob: aff6672e2a740ad92ee4c4f894a6f06a42de61ce [file] [log] [blame]
// { dg-do assemble }
// Error: Internal compiler error in egcs 1998/05/28 snapshot.
template<class T, unsigned int Length>
inline
unsigned int
extent(T (&x)[Length]) // { dg-error "" }
{
return Length;
}
extern int b[];
void f()
{
extent(b); // { dg-error "" } no matching function
}