mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:49:31 +02:00
6 lines
125 B
ObjectPascal
6 lines
125 B
ObjectPascal
{ %fail }
|
|
var c,c1,c2 : char;
|
|
begin
|
|
c:='a' or 'b'; // Error: Operation "or" not supported for types "Char" and "Char"
|
|
end.
|