// Regression test for #92111.//// check-pass#![feature(const_trait_impl)]usestd::marker::Destruct;pubtraitTr{}#[allow(drop_bounds)]impl<T: Drop>TrforT{}#[derive(Debug)]pubstructS(i32);implTrforS{}constfna<T: ~constDestruct>(t: T){}fnmain(){a(S(0));}