blob: 3db0ff02bccf724e71c1573fb001cd20181fbab2 [file]
// Copyright (c) 2019, 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.
//
// Dart test program for testing dart:ffi function pointers with callbacks.
// Formatting can break multitests, so don't format them.
// dart format off
import 'dart:ffi';
final testLibrary = DynamicLibrary.process();
// Correct type of exceptionalReturn argument to Pointer.fromFunction.
double testExceptionalReturn() {
Pointer.fromFunction<Double Function()>(returnVoid, null); //# 59: compile-time error
Pointer.fromFunction<Void Function()>(returnVoid, 0); //# 60: compile-time error
Pointer.fromFunction<Double Function()>(testExceptionalReturn, "abc"); //# 61: compile-time error
Pointer.fromFunction<Double Function()>(testExceptionalReturn, 0); //# 62: compile-time error
Pointer.fromFunction<Double Function()>(testExceptionalReturn); //# 63: compile-time error
return 0.0; // not used
}
void main() {
testExceptionalReturn();
}