| Index: lib/src/prism/tests/languages/sas/comment_feature.test | 
| diff --git a/lib/src/prism/tests/languages/sas/comment_feature.test b/lib/src/prism/tests/languages/sas/comment_feature.test | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..dea1e0a68cf92733cfc4c93f88e862f3ce771cef | 
| --- /dev/null | 
| +++ b/lib/src/prism/tests/languages/sas/comment_feature.test | 
| @@ -0,0 +1,17 @@ | 
| +* foobar; | 
| +foo; * foobar; | 
| +/* foo | 
| +bar */ | 
| + | 
| +---------------------------------------------------- | 
| + | 
| +[ | 
| +	["comment", "* foobar;"], | 
| +	"\r\nfoo", ["punctuation", ";"], | 
| +	["comment", "* foobar;"], | 
| +	["comment", "/* foo\r\nbar */"] | 
| +] | 
| + | 
| +---------------------------------------------------- | 
| + | 
| +Checks for comments. | 
|  |