Sign in
◑
Theme
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/master
/
.
/
Tests
/
RunCMake
/
CXXModulesCompile
/
imp-std-shared
/
uses-std.cxx
blob: cbeccd34dc41f5f02736ddb475bb841515829b54 [
file
] [
edit
]
export
module uses_std
;
import
std
;
#ifdef
_WIN32
export
__declspec
(
dllexport
)
int
dummy
()
{
return
0
;
}
#endif
export
inline
int
use_chrono
()
{
static_cast
<void>
(
std
::
chrono
::
current_zone
());
return
42
;
}