blob: 619aa126f5b1604543a649f314d7c1f776a3327b [file] [log] [blame]
// Copyright (c) 2022, 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 'dart:ffi';
class Foo implements Finalizable {}
void main() {
late Foo foo;
foo = Foo();
print(foo);
}