2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / abi / mangle20-2.C
blobbf3d189bf0cf9c744e8376f134f5e2310599400f
1 // { dg-do compile }
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>
7 // PR 9043
8 // mangled array types in templates
10 template <int I> void f(int (*)[2]) {}
11 template <int I> void g(int (*)[I+2]) {}
13 template void f<1>(int (*)[2]);  // { dg-warning "mangled name" }
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\]" } }