rust/tests/source/issue-1278.rs
2018-03-02 15:07:13 +13:00

9 lines
148 B
Rust

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