aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/ok/0012_visibility.rs
blob: 75b1db12134fb9f6bb4825dcd59e9ef5b9e7843c (plain)
1
2
3
4
5
fn a() {}
pub fn b() {}
pub(crate) fn c() {}
pub(super) fn d() {}
pub(in foo::bar::baz) fn e() {}