Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / abi / mangle19-1.C
blob1463d03f31d23632dcca6121d50b2254bde672b0
1 // { dg-do compile }
2 // { dg-options "-fabi-version=2 -Wno-abi" }
4 // Copyright (C) 2003 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 15 Dec 2003 <nathan@codesourcery.com>
7 // PR 13242
8 // mangled template arguments that are external objects incorrectly
10 extern int N;
11 template <int &> struct S {};
12 void n (S<N>) {}
13 // { dg-final { scan-assembler "\n_?_Z1n1SILZ1NEE\[: \t\n\]" } }