blob: 1ce5a484f28ef71b8014972f3f640ea9b3315c1c [file] [log] [blame] [edit]
// Copyright (c) 2025, 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 'package:add/add.g.dart';
import 'package:test/test.dart';
void main() {
test('add', () {
expect(add(40, 2), 42);
});
}