mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-08 21:13:55 +00:00
8 lines
113 B
Rust
8 lines
113 B
Rust
#![feature(pub_restricted)]
|
|
|
|
mod inner_mode {
|
|
pub(super) fn func_name(abc: i32) -> i32 {
|
|
abc
|
|
}
|
|
}
|