split_lib_test.dart 246 字节
Newer Older
G
Gary Qian 已提交
1 2 3 4
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
// @dart=2.10

G
Gary Qian 已提交
7 8 9 10 11
library splitlib;

int splitAdd(int i, int j) {
  return i + j;
}