blob: b4cf3fc6d98307e11ef314871389962c51c834b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ %fail }
{ Source provided for Free Pascal Bug Report 3480 }
{ Submitted by "Danny Milosavljevic" on 2004-12-26 }
{ e-mail: danny_milo@yahoo.com }
program z;
{$ifdef fpc}{$mode delphi}{$endif}
type
IBla = interface
{ This is not allowed }
class function X: Boolean;
end;
end;
begin
end.
|