| Index: runtime/observatory/lib/src/models/repository.dart
 | 
| diff --git a/tests/language/export_not_shadowed_by_prefix_helper2.dart b/runtime/observatory/lib/src/models/repository.dart
 | 
| similarity index 67%
 | 
| copy from tests/language/export_not_shadowed_by_prefix_helper2.dart
 | 
| copy to runtime/observatory/lib/src/models/repository.dart
 | 
| index ae2dca5fcf0a4842b29e20d7652b35b6bfd65cfc..9aec1fdc103ef72bdc233402d7fb1734b8b76f20 100644
 | 
| --- a/tests/language/export_not_shadowed_by_prefix_helper2.dart
 | 
| +++ b/runtime/observatory/lib/src/models/repository.dart
 | 
| @@ -2,8 +2,8 @@
 | 
|  // 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.
 | 
|  
 | 
| -void f() {
 | 
| -  f_called = true;
 | 
| -}
 | 
| +part of models;
 | 
|  
 | 
| -bool f_called = false;
 | 
| +abstract class Repository<ObjectT, DescriptorT> {
 | 
| +  Future<ObjectT> get(DescriptorT id);
 | 
| +}
 | 
| 
 |