1 2 3 4 5 6 7 8 9
extern crate rkt; struct A; #[test] #[should_panic] fn twice_managed_state() { let _ = rkt::build().manage(A).manage(A); }