CreateSwitchIntention: disable in assignment (while valid, rarely makes sense -- see IDEA-206725)

This commit is contained in:
Tagir Valeev
2019-02-06 11:52:59 +07:00
parent 1703f867df
commit 1930c6736b
3 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
class Test {
int field;
void m(int x) {
field =<caret> x;
}
}