blob: 1c3fe4535d400df5c1b02d17aeb8cc5387b36944 [file] [log] [blame]
// { dg-additional-options "-fmodule-header" }
// { dg-module-cmi {} }
template <bool _DecOnly>
struct __from_chars_alnum_to_val_table {
static inline int value = 42;
};
inline unsigned char
__from_chars_alnum_to_val() {
return __from_chars_alnum_to_val_table<false>::value;
}
template <bool Foo>
static inline int nonclass_value = 42;
inline unsigned char
get_nonclass_val() {
return nonclass_value<false>;
}