blob: a82b72edacf695d4c16f4ae1e37442f6f898257b [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 All field declarations in a Struct subclass declaration must
* either have type int or double and be annotated with a NativeType
* representing the native type, or must be of type Pointer or subtype of Struct.
*
* @description Checks that 'Struct' subtype value depends on annotation
* @author sgrekhov@unipro.ru
*/
import "dart:ffi";
import "package:ffi/ffi.dart";
import "../../../Utils/expect.dart";
class S1 extends Struct {
@Uint64()
external int x;
}
class S2 extends Struct {
@Int8()
external int x;
}
class S3 extends Struct {
@Uint8()
external int x;
}
void main() {
Pointer<S1> s1 = calloc<S1>();
try {
s1.ref.x = 0xFFFFFFFFFFFFFFFF;
Pointer<S2> s2 = new Pointer.fromAddress(s1.address);
Expect.equals(-1, s2.ref.x);
Pointer<S3> s3 = new Pointer.fromAddress(s1.address);
Expect.equals(255, s3.ref.x);
} finally {
calloc.free(s1);
}
}