blob: a9301b3fe4f30a9d1d85d26656de59033a29495a [file] [log] [blame]
// Regression test for <https://github.com/rust-lang/rust/issues/96161>.
// ignore-tidy-linelength
mod secret {
pub struct Secret;
}
// @has "$.index[*][?(@.name=='get_secret')].inner.function"
// @is "$.index[*][?(@.name=='get_secret')].inner.function.decl.output.resolved_path.name" \"secret::Secret\"
pub fn get_secret() -> secret::Secret {
secret::Secret
}