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