Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
gnu-inline-2_b.C
blob: e2f12d2d0b62dd7c1bad8c6d2a191a646a6d26cd [
file
] [
log
] [
blame
]
// PR c++/119154
// { dg-additional-options "-fmodules" }
template
<typename>
struct
char_traits
{
void
assign
();
};
void
foo
(
char_traits
<wchar_t>
s
)
{
s
.
assign
();
}
import
xstd
;
// Lazy loading at EOF of a gnu_inline declaration should not ICE.