blob: 2ade63f27c5f63285dd3e758d83941fcb704b7bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Test that we don't ICE when computing the drop types for
//@ ignore-compare-mode-polonius (explicit revisions)
//@ revisions: nll polonius
//@ [polonius] compile-flags: -Zpolonius=next
trait Decode<'a> {
type Decoder;
}
trait NonImplementedTrait {
type Assoc;
}
struct NonImplementedStruct;
pub struct ADecoder<'a> {
b: <B as Decode<'a>>::Decoder,
}
fn make_a_decoder<'a>() -> ADecoder<'a> {
//~^ ERROR the trait bound
//[nll]~| ERROR the trait bound
panic!()
}
struct B;
impl<'a> Decode<'a> for B {
type Decoder = BDecoder;
//~^ ERROR the trait bound
}
pub struct BDecoder {
non_implemented: <NonImplementedStruct as NonImplementedTrait>::Assoc,
//~^ ERROR the trait bound
}
fn main() {}
|