1 // { dg-do compile }
2 // { dg-options "-fabi-version=2" }
3 
4 // Copyright (C) 2003 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 29 Dec 2003 <nathan@codesourcery.com>
6 
7 // PR c++/13494. ICE
8 
9 template<typename T>
foo(int d[][4])10 int foo(int d[][4])
11 {
12   return d[0][0];
13 }
14 
15