2 // { dg-options "-fabi-version=1 -Wabi" }
4 // Copyright (C) 2003 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 15 Dec 2003 <nathan@codesourcery.com>
8 // mangled array types in templates
10 template <int I> void f(int (*)[2]) {} // { dg-warning "mangled name" }
11 template <int I> void g(int (*)[I+2]) {}
13 template void f<1>(int (*)[2]);
14 // { dg-final { scan-assembler "\n_?_Z1fILi1EEvPALi2E_i\[: \t\n\]" } }
15 template void g<1>(int (*)[3]);
16 // { dg-final { scan-assembler "\n_?_Z1gILi1EEvPAplT_Li2E_i\[: \t\n\]" } }