2b1cbb0c88
Change-Id: I54e29a3883b2e444945574d3d5e03f741c1e8716 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/436020 Reviewed-by: Nicholas Shahan <nshahan@google.com>
11 lines
181 B
Dart
11 lines
181 B
Dart
import 'package:expect/expect.dart';
|
|
import 'a.dart';
|
|
import 'b.dart';
|
|
|
|
void main() {
|
|
var s1 = foo_a();
|
|
var s2 = foo_b();
|
|
Expect.identical(s1, s2);
|
|
Expect.equals(s1, s2);
|
|
}
|