kakoune/test/highlight/rust/pub/in
2021-05-01 00:35:56 -04:00

18 lines
215 B
Plaintext

// bare
pub
// with scope
pub(crate)
pub (crate)
pub(super)
pub(self)
pub(in ::foo)
pub(in foo)
pub(in foo::bar)
pub(in foo::bar::baz)
// not valid pub expression, parens not colored
pub(crat)
pub(in)
spub(crate)