mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:28:03 +02:00
17 lines
286 B
ObjectPascal
17 lines
286 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmfuncref2b;
|
|
|
|
{$MODE objfpc}
|
|
|
|
type
|
|
TWasmFuncRef = function(a: longint; b: int64): longint; WasmFuncRef;
|
|
TRec = class
|
|
{ WebAssembly reference types cannot be used inside records, objects, or classes }
|
|
q: TWasmFuncRef;
|
|
end;
|
|
|
|
begin
|
|
end.
|