mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
13 lines
128 B
ObjectPascal
13 lines
128 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tatomic4;
|
|
|
|
type
|
|
TEnum = (teOne, teTwo, teThree);
|
|
|
|
var
|
|
e: TEnum = teOne;
|
|
begin
|
|
AtomicIncrement(e);
|
|
end.
|