Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
vmort-1_b.C
blob: 9ba49f130cc4968da8d5762921b2ff53201c144a [
file
] [
log
] [
blame
]
// { dg-additional-options "-fmodules-ts" }
import
tom
.
riddle
;
int
main
()
{
auto
one
=
One
(
2
);
if
(
int
(
one
)
!=
2
)
return
1
;
int
two
=
Two
(
3
);
if
(
two
!=
3
)
return
2
;
return
0
;
}