SortContentAction: prevent sorting when enum entries have dependencies

This commit is contained in:
Roman.Ivanov
2018-06-21 11:55:22 +07:00
parent db8ed6b7e9
commit 19bfb9be67
2 changed files with 25 additions and 4 deletions
@@ -0,0 +1,11 @@
// "Sort content" "false"
enum E {
Foo(null),
Bar(Foo),<caret>
Baz(null);
E(E e) {
}
}