mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 01:39:30 +02:00
14 lines
202 B
ObjectPascal
14 lines
202 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmexternref5;
|
|
|
|
type
|
|
TRec = record
|
|
{ WebAssembly reference types cannot be used inside records, objects, or classes }
|
|
q: WasmExternRef;
|
|
end;
|
|
|
|
begin
|
|
end.
|