mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 15:31:41 +02:00
14 lines
203 B
ObjectPascal
14 lines
203 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmexternref5a;
|
|
|
|
type
|
|
TRec = object
|
|
{ WebAssembly reference types cannot be used inside records, objects, or classes }
|
|
q: WasmExternRef;
|
|
end;
|
|
|
|
begin
|
|
end.
|