mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
16 lines
218 B
ObjectPascal
16 lines
218 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmexternref5b;
|
|
|
|
{$MODE objfpc}
|
|
|
|
type
|
|
TRec = class
|
|
{ WebAssembly reference types cannot be used inside records, objects, or classes }
|
|
q: WasmExternRef;
|
|
end;
|
|
|
|
begin
|
|
end.
|