Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
using-13_b.C
blob: 49fa09d39ee56617f9684838538407911788596e [
file
] [
log
] [
blame
]
// { dg-additional-options "-fmodules-ts" }
import
M
;
int
main
()
{
A a
;
// Check all specialisations are correctly exported
B
<void>
b
;
B
<int>
::
foo b1
;
B
<
int
*>::
bar b2
;
C c
;
auto
d
=
D
;
#if __cpp_concepts >= 201907L
auto
e
=
E
<void>
;
#endif
}