mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00
12 lines
141 B
ObjectPascal
12 lines
141 B
ObjectPascal
{%FAIL}
|
|
program toperator7;
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
Variants;
|
|
var
|
|
AValue: Variant;
|
|
begin
|
|
// this construction must fail
|
|
AValue = 1;
|
|
end. |