blob: 26bb59c1875fd0e0c3fb8a99d4b14fe5167fc5eb (
plain)
1
2
3
4
5
6
7
|
// @has issue_15169/struct.Foo.html '//*[@id="method.eq"]' 'fn eq'
// https://github.com/rust-lang/rust/issues/15169
#![crate_name="issue_15169"]
#[derive(PartialEq)]
pub struct Foo;
|