dart-sdk/tests/ffi/regress_45198_test.dart
Daco Harkes 55082199e7 [vm/ffi] Fix Array<Pointer> loads and stores
Closes: https://github.com/dart-lang/sdk/issues/45198

TEST=tests/ffi(_2)/regress_45198_test.dart

Change-Id: I15cf5a4d48b1bfb33de039cc8b17be8e01fba752
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/191881
Reviewed-by: Tess Strickland <sstrickl@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
2021-03-18 12:26:38 +00:00

30 lines
787 B
Dart

// 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.
import "dart:ffi";
import "package:expect/expect.dart";
import "package:ffi/ffi.dart";
class Struct8BytesInlineArrayInt extends Struct {
@Array(2)
external Array<Pointer<Int8>> a0;
}
void main() {
final arrayPointer = calloc<Struct8BytesInlineArrayInt>();
final pointer = Pointer<Int8>.fromAddress(0xdeadbeef);
final array = arrayPointer.ref.a0;
print(arrayPointer);
print(array);
Expect.type<Array<Pointer<Int8>>>(array);
Expect.equals(nullptr, array[0]);
array[0] = pointer;
Expect.equals(pointer, array[0]);
calloc.free(arrayPointer);
}