blob: 89b1db496f95c5e10e0ddff25bda6627f95009fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// run-pass
pub trait Parser {
type Input;
}
pub struct Iter<P: Parser>(#[allow(unused_tuple_struct_fields)] P, P::Input);
#[allow(unused_tuple_struct_fields)]
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);
}
|