exclude_generic_monomorph.rs 148 B

12345678910
  1. #[repr(transparent)]
  2. pub struct Foo(NonZeroU64);
  3. #[repr(C)]
  4. pub struct Bar {
  5. foo: Option<Foo>,
  6. }
  7. #[no_mangle]
  8. pub extern "C" fn root(f: Bar) {}