mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 23:09:31 +02:00
17 lines
207 B
ObjectPascal
17 lines
207 B
ObjectPascal
{ %cpu=wasm32 }
|
|
{ %fail }
|
|
|
|
program twasmexternref3b;
|
|
|
|
procedure testproc;
|
|
var
|
|
p: WasmExternRef;
|
|
q: Pointer;
|
|
begin
|
|
{ WasmExternRef cannot be implicitly converted to pointer }
|
|
q := p;
|
|
end;
|
|
|
|
begin
|
|
end.
|