2020-05-05 11:53:42 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub struct Struc;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/struct.Struc.html
|
|
|
|
//@ has - '//*[@id="main-content"]/h2[@id="implementations"]' "Implementations"
|
2020-05-05 11:53:42 +00:00
|
|
|
impl Struc {
|
|
|
|
pub const S: u64 = 0;
|
|
|
|
}
|