aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/org/anarres/cpp/LexerSourceTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/org/anarres/cpp/LexerSourceTestCase.java')
-rw-r--r--src/tests/org/anarres/cpp/LexerSourceTestCase.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/org/anarres/cpp/LexerSourceTestCase.java b/src/tests/org/anarres/cpp/LexerSourceTestCase.java
index 828ee9c..adb1862 100644
--- a/src/tests/org/anarres/cpp/LexerSourceTestCase.java
+++ b/src/tests/org/anarres/cpp/LexerSourceTestCase.java
@@ -61,6 +61,7 @@ public class LexerSourceTestCase extends BaseTestCase implements Test {
IDENTIFIER);
testLexerSource("/**/", CCOMMENT);
+ testLexerSource("/* /**/ */", CCOMMENT, WHITESPACE, '*', '/');
testLexerSource("/** ** **/", CCOMMENT);
testLexerSource("//* ** **/", CPPCOMMENT);
testLexerSource("'\\r' '\\xf' '\\xff' 'x' 'aa' ''",