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