mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
13 lines
147 B
Rust
13 lines
147 B
Rust
pub(crate) struct ASlash(
|
|
// hello
|
|
i32
|
|
);
|
|
|
|
pub(crate) struct AStar(
|
|
/* hello */
|
|
i32
|
|
);
|
|
|
|
pub(crate) struct BStar(/* hello */ i32);
|
|
|