File tree Expand file tree Collapse file tree 3 files changed +5
-23
lines changed
src/tools/compiletest/src Expand file tree Collapse file tree 3 files changed +5
-23
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ impl<'test> TestCx<'test> {
381381 // if a test does not crash, consider it an error
382382 if proc_res. status . success ( ) || matches ! ( proc_res. status. code( ) , Some ( 1 | 0 ) ) {
383383 self . fatal ( & format ! (
384- "test no longer crashes/triggers ICE! Please give it a mearningful name, \
384+ "test no longer crashes/triggers ICE! Please give it a meaningful name, \
385385 add a doc-comment to the start of the test explaining why it exists and \
386386 move it to tests/ui or wherever you see fit."
387387 ) ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#![ feature( type_alias_impl_trait) ]
22
3+ //! This test used to ICE rust-lang/rust#124891
4+ //! because we added an assertion for catching cases where opaque types get
5+ //! registered during the processing of subtyping predicates.
6+
37type Tait = impl FnOnce ( ) -> ( ) ;
48
59fn reify_as_tait ( ) -> Thunk < Tait > {
You can’t perform that action at this time.
0 commit comments