Add missing quotation marks

Signed-off-by: cuishuang <imcusg@gmail.com>
This commit is contained in:
cuishuang 2024-09-07 09:23:28 +08:00
parent 26b5599e4d
commit be10d56039

View File

@ -5,7 +5,7 @@ use std::marker::PhantomData;
trait SadBee { trait SadBee {
const ASSOC: usize; const ASSOC: usize;
} }
// fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while // `fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
// we allow two different impls for these types, leading // we allow two different impls for these types, leading
// to different const eval results. // to different const eval results.
impl SadBee for for<'a> fn(&'a ()) { impl SadBee for for<'a> fn(&'a ()) {