mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
55082199e7
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>
29 lines
787 B
Dart
29 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);
|
|
}
|