summary refs log tree commit diff
path: root/src/test/ui/issues/issue-25700-2.rs
blob: b161e68abafd0e2e4b638e4609dbda1e44b582cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// run-pass
pub trait Parser {
    type Input;
}

pub struct Iter<P: Parser>(P, P::Input);

pub struct Map<P, F>(P, F);
impl<P, F> Parser for Map<P, F> where F: FnMut(P) {
    type Input = u8;
}

trait AstId { type Untyped; }
impl AstId for u32 { type Untyped = u32; }

fn record_type<Id: AstId>(i: Id::Untyped) -> u8 {
    Iter(Map(i, |_: Id::Untyped| {}), 42).1
}

pub fn main() {
    assert_eq!(record_type::<u32>(3), 42);
}