aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming
diff options
context:
space:
mode:
authorRoman Ivanov <ivanov-jr@mail.ru>2016-06-03 08:56:03 -0700
committerRoman Ivanov <ivanov-jr@mail.ru>2016-06-09 05:38:53 -0700
commit60f3a92c22f17c141bba07264c1cc4aab8d7ea66 (patch)
treee3b09c70ec9f7e7cbb9b1afbd73178f3d9458f21 /src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming
parent015fa7f3e7a58cb15e43577099616d372358217b (diff)
downloadcheckstyle-60f3a92c22f17c141bba07264c1cc4aab8d7ea66.tar.gz
Issue #3229: resources were moved to compilable area
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputStaticModifierInInterface.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputStaticModifierInInterface.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputStaticModifierInInterface.java
new file mode 100644
index 000000000..5383c9ddc
--- /dev/null
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputStaticModifierInInterface.java
@@ -0,0 +1,11 @@
+//Compilable with Java8
+package com.puppycrawl.tools.checkstyle.checks.naming;
+
+public interface InputStaticModifierInInterface
+{
+ static int f()
+ {
+ int someName = 5;
+ return someName;
+ }
+}