1const IM_A_CONST: () = (); 2 3fn main() { 4 dbg!(IM_A_CONST); 5} 6 7// None of this should be considered const 8fn foo<T0, T1, U>(_: (T0, T1, U)) { 9 let _: std::collections::BTreeSet<()> = todo!(); 10}
View as plain text