| Index: runtime/observatory/lib/repositories.dart
|
| diff --git a/tests/language/regress_26668_test.dart b/runtime/observatory/lib/repositories.dart
|
| similarity index 59%
|
| copy from tests/language/regress_26668_test.dart
|
| copy to runtime/observatory/lib/repositories.dart
|
| index 1b329aa4a1b31e8f56c2a8750ed0923e27b3a213..0fa09d67b57e740010a8ad08fbb943bbd76b73fc 100644
|
| --- a/tests/language/regress_26668_test.dart
|
| +++ b/runtime/observatory/lib/repositories.dart
|
| @@ -2,16 +2,10 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -import 'dart:async';
|
| -
|
| -main() async {
|
| - var myClass = new CustomClass<int>();
|
| - await myClass.processData();
|
| -}
|
| +library repositories;
|
|
|
| -class CustomClass<T> {
|
| - Future<T> processData() async {
|
| - return 0;
|
| - }
|
| -}
|
| +import 'dart:async';
|
| +import 'package:observatory/models.dart' as M;
|
| +import 'package:observatory/service.dart' as S;
|
|
|
| +part 'src/repositories/script.dart';
|
|
|