a37502c1b8
TEST=tests/ffi Change-Id: Iae97f62b1adb8dbe99ad075dfe750604db0de62c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/249301 Commit-Queue: Daco Harkes <dacoharkes@google.com> Reviewed-by: Chloe Stefantsova <cstefantsova@google.com> Reviewed-by: Tess Strickland <sstrickl@google.com>
11 lines
356 B
Dart
11 lines
356 B
Dart
// Copyright (c) 2019, 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:expect/expect.dart';
|
|
|
|
void main() {
|
|
// TODO(http://dartbug.com/49304): implement dart:ffi tests
|
|
Expect.isTrue(true);
|
|
}
|