kakoune/test/highlight/rust/pub/in

18 lines
215 B
Plaintext
Raw Normal View History

2021-05-01 06:35:56 +02:00
// 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)