mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
11 lines
200 B
Rust
11 lines
200 B
Rust
#![crate_name = "unicode"]
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
//@ has unicode/struct.Foo.html //a/@href "#%C3%BA"
|
|
//@ !has unicode/struct.Foo.html //a/@href "#ú"
|
|
/// # ú
|
|
pub fn foo() {}
|
|
}
|