blob: 91bbdb540a19f7edfa78339bbc5645f686f2718a [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 int sizeOf <T extends NativeType>()
/// Number of bytes used by native type T.
///
/// Includes padding and alignment of structs.
///
/// @description Checks that this function returns Number of bytes used by native
/// type T
/// @author sgrekhov@unipro.ru
import "dart:ffi";
import '../../../Utils/expect.dart';
void main() {
Expect.isTrue(sizeOf<IntPtr>() == 4 || sizeOf<IntPtr>() == 8);
}