IDEA-175670 Duplicate "enum.valueOf" suggestion

This commit is contained in:
peter
2017-07-13 19:29:54 +02:00
parent fddf282e16
commit 54461cd71d
3 changed files with 32 additions and 18 deletions
@@ -0,0 +1,10 @@
enum Foo {}
enum Bar {}
class Doo {
void foo(Foo f) {}
void foo(Bar f) {}
void bar() {
foo(valu<caret>)
}
}