Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr22514.C
blob: ed31cc7a103126531681178b2c6864eeaa3cf217 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
namespace
s
{
template
<int>
struct
_List_base
{
int
_M_impl
;
};
template
<
int
i
>
struct
list
:
_List_base
<i>
{
using
_List_base
<i>
::
_M_impl
;
}
// { dg-error "after struct definition" }
}
s
::
list
<
1
>
OutputModuleListType
;