// check-pass // revisions: full min #![cfg_attr(full, feature(const_generics))] #![cfg_attr(full, allow(incomplete_features))] pub struct S(u8); impl S { pub fn get(&self) -> &u8 { &self.0 } } fn main() { const A: u8 = 5; let s = S(0); s.get::(); }