Open
Description
In some tests internally, the following pattern is not reliably working:
strings.dart
:
@doNotStore
library strings;
import 'package:meta/meta.dart';
String get someString => 'string';
c.dart
:
import 'strings.dart' as strings;
class C {
String title(Object o) => strings.someString; //<= should show warning
}