blob: 0098c8585ed7150a0522eb7911aa0d1b6c279092 [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 Union subclass declaration must
/// either have type int or float and be annotated with a NativeType
/// representing the native type, or must be of type Pointer or subtype of
/// Struct or Union.
///
/// @description Checks that 'Union' subtype value depends on annotation
/// @author sgrekhov@unipro.ru
import "dart:ffi";
import "package:ffi/ffi.dart";
import "../../../Utils/expect.dart";
class U1 extends Union {
@Uint64()
external int x;
}
class U2 extends Union {
@Int16()
external int x;
}
class U3 extends Union {
@Uint16()
external int x;
}
void main() {
Pointer<U1> u1 = calloc<U1>();
try {
u1.ref.x = 0xFFFFFFFFFFFFFFFF;
Pointer<U2> u2 = new Pointer.fromAddress(u1.address);
Expect.equals(-1, u2.ref.x);
Pointer<U3> u3 = new Pointer.fromAddress(u1.address);
Expect.equals(65535, u3.ref.x);
} finally {
calloc.free(u1);
}
}