blob: 7c65b3f5a7a0e2f872e5f091d9ce76503b5c01e0 [file] [log] [blame]
// Copyright (c) 2021, 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.
/**
* @assertion Dart_CObject()
*
* @description Checks that Dart_CObject can be created
* @author sgrekhov@unipro.ru
*/
import "dart:ffi";
import "../../../Utils/expect.dart";
void main() {
Dart_CObject o = new Dart_CObject();
Expect.isTrue(o is Dart_CObject);
Expect.isTrue(o is Opaque);
}