use std::sync::Arc; use stowaway::Stowable; use stowaway_derive::Stowable; struct NoStow { x: usize, } #[derive(Stowable)] struct Stow2 { x: Arc, } #[test] fn test() {}