mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:48:08 +02:00
16 lines
211 B
ObjectPascal
16 lines
211 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmexternref6b;
|
|
|
|
procedure test(para: WasmExternRef);
|
|
var
|
|
a: longint;
|
|
begin
|
|
{ Cannot take the size of WebAssembly reference types }
|
|
a := SizeOf(para);
|
|
end;
|
|
|
|
begin
|
|
end.
|