blob: a52d9bb9936a707af2f5183c19cb531a7f2f0236 [file] [log] [blame]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// 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 '../../common/testing.dart' as helper;
import 'package:expect/expect.dart';
void main() async {
final result = (await helper.load('entry1.dart')) as List;
Expect.equals(43, result[0] as int);
Expect.equals(44, result[1] as int);
helper.done();
}