mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
22 lines
314 B
ObjectPascal
22 lines
314 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3683 }
|
|
{ Submitted by "Christian Iversen" on 2005-02-22 }
|
|
{ e-mail: chrivers@iversen-net.dk }
|
|
program test;
|
|
|
|
type
|
|
foo = (a, b);
|
|
const
|
|
{$ifdef use2byte}
|
|
T=a;
|
|
{$else}
|
|
T=b;
|
|
{$endif}
|
|
{$if T = a}
|
|
{$message 'T = a'}
|
|
{$else}
|
|
{$message 'T = b'}
|
|
{$ifend}
|
|
|
|
begin
|
|
end.
|