File tree 3 files changed +5
-23
lines changed
src/tools/compiletest/src
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> {
381
381
// if a test does not crash, consider it an error
382
382
if proc_res. status . success ( ) || matches ! ( proc_res. status. code( ) , Some ( 1 | 0 ) ) {
383
383
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, \
385
385
add a doc-comment to the start of the test explaining why it exists and \
386
386
move it to tests/ui or wherever you see fit."
387
387
) ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#![ feature( type_alias_impl_trait) ]
2
2
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
+
3
7
type Tait = impl FnOnce ( ) -> ( ) ;
4
8
5
9
fn reify_as_tait ( ) -> Thunk < Tait > {
You can’t perform that action at this time.
0 commit comments