14 lines
170 B
Rust
14 lines
170 B
Rust
// rustfmt-brace_style: AlwaysNextLine
|
|
mod x
|
|
{
|
|
struct X(i8);
|
|
|
|
impl Y for X
|
|
{
|
|
fn y(self) -> ()
|
|
{
|
|
println!("ok");
|
|
}
|
|
}
|
|
}
|