mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:49:31 +02:00
16 lines
209 B
ObjectPascal
16 lines
209 B
ObjectPascal
{%FAIL}
|
|
{$mode objfpc}
|
|
|
|
{
|
|
Test RTTI directive (trailing comma)
|
|
}
|
|
program texrtti4;
|
|
uses
|
|
typinfo;
|
|
|
|
// TODO: Syntax error, "identifier" expected but "]"
|
|
{$RTTI EXPLICIT PROPERTIES([vcPrivate,])}
|
|
|
|
begin
|
|
end.
|