10 lines
148 B
Rust
10 lines
148 B
Rust
// rustfmt-indent_style = "block"
|
|
|
|
#![feature(pub_restricted)]
|
|
|
|
mod inner_mode {
|
|
pub(super) fn func_name(abc: i32) -> i32 {
|
|
abc
|
|
}
|
|
}
|