blob: 4b42634169b01e70cab8a9612cc56684d0109249 [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 it is a compile error if any of the field in Union
/// subclass is not 'int', 'double', 'Pointer' or subtype of Struct or Union
/// @author sgrekhov@unipro.ru
import "dart:ffi";
class U1 extends Union {
@Double()
external double x;
@Int32()
external int y;
@Int8()
external num z;
// ^^^
// [analyzer] unspecified
// [cfe] unspecified
}
class U2 extends Union {
@Double()
external double x;
@Int32()
external int y;
String? s;
//^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
class U3 extends Union {
@Double()
external double x;
@Int32()
external int y;
external String? s;
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
class U4 extends Union {
@Double()
external double x;
@Int32()
external int y;
@Int16()
external String? s;
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
class U5 extends Union {
@Double()
external double x;
@Int32()
external int y;
external bool? b;
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
class U6 extends Union {
@Double()
external double x;
@Int32()
external int y;
bool? b;
//^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
void main() {
U1? u1;
U2? u2;
U3? u3;
U4? u4;
U5? u5;
U6? u6;
}