blob: 7858f35a2616e57c3d61802956c3900683ba08c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![crate_name = "foo"]
// @has foo/struct.SomeStruct.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.some_fn-1"]' \
// "some_fn"
pub struct SomeStruct<T> { _inner: T }
impl SomeStruct<()> {
pub fn some_fn(&self) {}
}
impl SomeStruct<usize> {
pub fn some_fn(&self) {}
}
|