• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![cfg_attr(feature = "used_linker", feature(used_with_arg))]
2 
3 use linkme::distributed_slice;
4 
5 pub struct Unit;
6 
7 #[distributed_slice]
8 pub static ZEROSIZED: [Unit];
9 
main()10 fn main() {}
11