aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/mangle19-2.C
blob: f0855e69d342a8502efe9cf1142ad228d18e29f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// { dg-options "-fabi-version=1 -Wabi" }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 15 Dec 2003 <nathan@codesourcery.com>

// PR 13242
// mangled template arguments that are external objects incorrectly

extern int N;
template <int &> struct S {};
void n (S<N>) {}  // { dg-warning "mangled name" }
// { dg-final { scan-assembler "\n_?_Z1n1SIXadL_Z1NEEE\[: \t\n\]" } }