Skip to content

Commit b09b7da

Browse files
Rollup merge of #130054 - cuishuang:master, r=chenyukang
Add missing quotation marks
2 parents 9936179 + be10d56 commit b09b7da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ui/const-generics/invariant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::marker::PhantomData;
55
trait SadBee {
66
const ASSOC: usize;
77
}
8-
// fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
8+
// `fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
99
// we allow two different impls for these types, leading
1010
// to different const eval results.
1111
impl SadBee for for<'a> fn(&'a ()) {

0 commit comments

Comments
 (0)