1 /*
2 RegexpSingleline
3 format = SYSTEM\\.(OUT)|(ERR)\\.PRINT(LN)?\\(
4 message =
5 ignoreCase = true
6 minimum = (default)0
7 maximum = (default)0
8 fileExtensions = (default)""
9
10
11 */
12
13 package com.puppycrawl.tools.checkstyle.checks.regexp.regexpsingleline;
14
15 public class InputRegexpSinglelineSemantic10 {
16 public static void main(String[] args) {
17 System.out.println("str"); // violation ''
18 }
19 }