We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8350ba1 commit 3061e45Copy full SHA for 3061e45
spec/lexers/c_spec.rb
@@ -24,5 +24,9 @@
24
it 'recognizes one-line comments not followed by a newline (#796)' do
25
assert_tokens_equal '// comment', ['Comment.Single', '// comment']
26
end
27
+
28
+ it "doesn't leak c++ keywords" do
29
+ assert_tokens_equal 'using', ['Name', 'using']
30
+ end
31
32
0 commit comments