aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
new file mode 100644
index 000000000..4e1bf7e7e
--- /dev/null
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
@@ -0,0 +1,14 @@
+package com.puppycrawl.tools.checkstyle.checks.naming;
+
+public class InputMemberName
+{
+ public int mPublic;
+ protected int mProtected;
+ int mPackage;//comment
+ private int mPrivate;
+
+ public int _public;
+ protected int _protected;
+ int _package;
+ private int _private;
+}