mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-11 07:50:07 -04:00
ci: allow negative assertions in tests
This commit is contained in:
parent
4f3aa2af44
commit
ab414f8b1c
2 changed files with 13 additions and 1 deletions
12
tests/query/highlights/rust/super-crate-imports.rs
Normal file
12
tests/query/highlights/rust/super-crate-imports.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
use crate::a;
|
||||
// ^ namespace
|
||||
// ^ !keyword
|
||||
use crate::{b, c};
|
||||
// ^ namespace
|
||||
// ^ !keyword
|
||||
use super::a;
|
||||
// ^ namespace
|
||||
// ^ !keyword
|
||||
use super::{b, c};
|
||||
// ^ namespace
|
||||
// ^ !keyword
|
||||
Loading…
Add table
Add a link
Reference in a new issue