mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-17 02:05:10 +01:00
15 lines
271 B
ObjectPascal
15 lines
271 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmfuncref2a;
|
|
|
|
type
|
|
TWasmFuncRef = function(a: longint; b: int64): longint; WasmFuncRef;
|
|
TRec = object
|
|
{ WebAssembly reference types cannot be used inside records, objects, or classes }
|
|
q: TWasmFuncRef;
|
|
end;
|
|
|
|
begin
|
|
end.
|