|
1 | 1 | //! This test checks that opaque type collection doesn't try to normalize the projection
|
2 | 2 | //! without respecting its binders (which would ICE).
|
3 | 3 | //! Unfortunately we don't even reach opaque type collection, as we ICE in typeck before that.
|
4 |
| -// known-bug: #109281 |
5 |
| -// failure-status: 101 |
6 |
| -// error-pattern:internal compiler error |
7 |
| -// normalize-stderr-test "internal compiler error.*" -> "" |
8 |
| -// normalize-stderr-test "DefId\([^)]*\)" -> "..." |
9 |
| -// normalize-stderr-test "\nerror: internal compiler error.*\n\n" -> "" |
10 |
| -// normalize-stderr-test "note:.*unexpectedly panicked.*\n\n" -> "" |
11 |
| -// normalize-stderr-test "note: we would appreciate a bug report.*\n\n" -> "" |
12 |
| -// normalize-stderr-test "note: compiler flags.*\n\n" -> "" |
13 |
| -// normalize-stderr-test "note: rustc.*running on.*\n\n" -> "" |
14 |
| -// normalize-stderr-test "thread.*panicked.*:\n.*\n" -> "" |
15 |
| -// normalize-stderr-test "stack backtrace:\n" -> "" |
16 |
| -// normalize-stderr-test "\s\d{1,}: .*\n" -> "" |
17 |
| -// normalize-stderr-test "\s at .*\n" -> "" |
18 |
| -// normalize-stderr-test ".*note: Some details.*\n" -> "" |
19 |
| -// normalize-stderr-test "\n\n[ ]*\n" -> "" |
20 |
| -// normalize-stderr-test "compiler/.*: projection" -> "projection" |
21 |
| -// normalize-stderr-test ".*omitted \d{1,} frame.*\n" -> "" |
22 |
| -// normalize-stderr-test "error: [\s\n]*query stack" -> "error: query stack" |
23 |
| -// normalize-stderr-test "[\n\s]*\nquery stack during panic:" -> "query stack during panic:" |
| 4 | +//! See #109281 for the original report. |
24 | 5 | // edition:2018
|
| 6 | +// error-pattern: expected generic lifetime parameter, found `'a` |
25 | 7 |
|
26 | 8 | #![feature(type_alias_impl_trait)]
|
27 | 9 | #![allow(incomplete_features)]
|
|
0 commit comments