fpc/tests/test/wasm/twasmfuncref2.pp

15 lines
270 B
ObjectPascal

{ %cpu=wasm32 }
{ %fail }
program twasmfuncref2;
type
TWasmFuncRef = function(a: longint; b: int64): longint; WasmFuncRef;
TRec = record
{ WebAssembly reference types cannot be used inside records, objects, or classes }
q: TWasmFuncRef;
end;
begin
end.