Niko to reach out to wg-grammar around writing up a“what is status” thing
Niko to comment on https://github.com/rust-lang/rust/pull/74622 to say that this feels like largely libs call but we’d like consistency with print! and panic! in terms of when something is a format string or not
Action item
Agenda
Notes from meeting (2020-08-17):
fn test<T: Bar>() {
let _ = [0; T::ASSOC];
}
trait Bar {}
impl Bar for u16 {}
impl Bar for (u8, u8) {}
trait Fez {
const ASSOC: usize;
}
impl<T> Fez for T {
const ASSOC: usize = 4;
}
fn test<T: Bar>() {
let _ = [0; T::ASSOC];
}
trait Bar {
const ASSOC: usize;
}
impl Bar for u16 {
const ASSOC: usize = 4;