disable return void suggestion (IDEA-154467)

This commit is contained in:
Anna.Kozlova
2016-04-11 11:35:44 +02:00
parent ad2a4513fb
commit 59daba3004
2 changed files with 12 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
// "Make 'b' return 'void'" "false"
class Test {
static void a() {}
static String b() {
return <caret>a();
}
}