]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/fn-type.rs
Fix problem noticed in PR106859 with char -> u8 suggestion
[rust.git] / tests / rustdoc / fn-type.rs
1 #![crate_name = "foo"]
2 #![crate_type = "lib"]
3
4 pub struct Foo<'a, T> {
5     pub generic: fn(val: &T) -> T,
6
7     pub lifetime: fn(val: &'a i32) -> i32,
8     pub hrtb_lifetime: for<'b, 'c> fn(one: &'b i32, two: &'c &'b i32) -> (&'b i32, &'c i32),
9 }
10
11 // @has 'foo/struct.Foo.html' '//span[@id="structfield.generic"]' "generic: fn(val: &T) -> T"
12 // @has 'foo/struct.Foo.html' '//span[@id="structfield.lifetime"]' "lifetime: fn(val: &'a i32) -> i32"
13 // @has 'foo/struct.Foo.html' '//span[@id="structfield.hrtb_lifetime"]' "hrtb_lifetime: for<'b, 'c> fn(one: &'b i32, two: &'c &'b i32) -> (&'b i32, &'c i32)"