use parameterized;
// we want to copy the visibility from the fn
pub
// which should generate (something along these lines):
//
// ```
// pub(crate) mod fn my_test {
// #[test]
// pub(crate) my_test_0(v: &str, w: i32) {}
//
// #[test]
// pub(crate) my_test_0(v: &str, w: i32) {}
// }
// ```