aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb98.C
blob: cc19f0997cd8988b42bb6a7d9cfe0e135b0d8baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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
    }