blob: 7f322fbe300234d03a663ea472a58215db535a1e [file]
#![feature(no_core)]
#![no_core]
mod a {
pub mod b {
pub fn f(x: [u8; { 100 }]) -> [u8; { 100 }] {
x
}
}
}