summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java')
-rw-r--r--java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java b/java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java
new file mode 100644
index 000000000000..646b1081aa1e
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/completion/smartType/NewByteArray2.java
@@ -0,0 +1,10 @@
+public class Bug17 {
+
+ private void f(byte[] d) {
+ }
+
+ private void g() {
+ f(new <caret>);
+ }
+
+} \ No newline at end of file