• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![cfg_attr(feature = "used_linker", feature(used_with_arg))]
2 
3 use linkme::distributed_slice;
4 
5 #[distributed_slice]
6 pub static SLICE: [&'static str] = [..];
7 
8 #[distributed_slice(SLICE)]
9 extern crate std as _std;
10 
main()11 fn main() {}
12