blob: b4b8e196ec3148ef5ea550b8a73810e9a3969a09 [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 Pointer<U> cast <U extends NativeType>()
* Cast Pointer to a Pointer.
*
* @description Checks that this method casts Pointer to a Pointer
* @author sgrekhov@unipro.ru
*/
import "dart:ffi";
import "package:ffi/ffi.dart";
import '../../../Utils/expect.dart';
void main() {
Pointer<Int16> p1 = calloc<Int16>();
try {
Pointer<Void> p2 = new Pointer.fromAddress(p1.address);
p1.value = 256;
var p3 = p2.cast<Int8>();
Expect.equals(0, p3.value);
} finally {
calloc.free(p1);
}
}