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