Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
pr99232_a.C
blob: 097fb5e4403ff0ad3b55af333c278446b073db89 [
file
] [
log
] [
blame
]
// PR c++/99232
// { dg-additional-options "-fmodules-ts" }
// { dg-module-cmi pr99232 }
export
module
pr99232
;
export
const
double
lambda
{
1.3
};
export
constexpr
int
a
=
42
;
export
const
double
*
get_lambda_addr
()
{
return
&
lambda
;
}