summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/template/postfix/templates
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/template/postfix/templates')
-rw-r--r--java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored.java5
-rw-r--r--java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored_after.java5
2 files changed, 10 insertions, 0 deletions
diff --git a/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored.java b/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored.java
new file mode 100644
index 000000000000..1af8cd0813a9
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored.java
@@ -0,0 +1,5 @@
+public class Foo {
+ void m(Object o) {
+ !.null<caret>
+ }
+} \ No newline at end of file
diff --git a/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored_after.java b/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored_after.java
new file mode 100644
index 000000000000..1334be6b7029
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/template/postfix/templates/null/singleExclamationIgnored_after.java
@@ -0,0 +1,5 @@
+public class Foo {
+ void m(Object o) {
+ !.null <caret>
+ }
+} \ No newline at end of file