Index: packages/dart_style/test/regression/0200/0235.unit |
diff --git a/packages/dart_style/test/regression/0200/0235.unit b/packages/dart_style/test/regression/0200/0235.unit |
new file mode 100644 |
index 0000000000000000000000000000000000000000..12518071f059376a60fb39dc674778e44293e0f9 |
--- /dev/null |
+++ b/packages/dart_style/test/regression/0200/0235.unit |
@@ -0,0 +1,13 @@ |
+>>> |
+class _MultiSelectionModelImpl<T> |
+ extends ChangeNotifier |
+ with SelectionChangeNotifier<T> |
+ implements SelectionModel<T> { |
+ // ... |
+} |
+<<< |
+class _MultiSelectionModelImpl<T> extends ChangeNotifier |
+ with SelectionChangeNotifier<T> |
+ implements SelectionModel<T> { |
+ // ... |
+} |