mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
13 lines
214 B
ObjectPascal
13 lines
214 B
ObjectPascal
{ %fail }
|
|
unit Testunit;
|
|
{This doesn't fail although it should due to non resolved forward. OR}
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
procedure x; forward;
|
|
|
|
//begin {If the comment is removed, it fails as it should.}
|
|
end.
|