• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // This file is part of ICU4X. For terms of use, please see the file
2 // called LICENSE at the top level of the ICU4X source tree
3 // (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4 
5 #[cfg(feature = "alloc")]
6 mod enum_keyword;
7 mod struct_keyword;
8 
9 #[doc(inline)]
10 #[cfg(feature = "alloc")]
11 pub use enum_keyword::enum_keyword;
12 #[doc(inline)]
13 pub use struct_keyword::struct_keyword;
14