Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
cexpr-4_a.C
blob: 44eea35a09f26cfd1a4775fc7d92abe6954a010e [
file
]
// { dg-additional-options "-fmodules-ts" }
export
module
Cexpr4
;
// { dg-module-cmi "Cexpr4" }
struct
A
{
int
m
=
42
;
};
constexpr
A a
;
export
inline
int
f
()
{
return
a
.
m
;
}