blob: a96e91af2a6b67dea040867dacb963ba02c5fa7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ %fail }
{ Source provided for Free Pascal Bug Report 2018 }
{ Submitted by "Sergey Kosarevsky" on 2002-06-29 }
{ e-mail: netsurfer@au.ru }
Unit tw2018;
Interface
Type tExtObject=Object
{ The next line should be refused }
Procedure Draw;External;
End;
Implementation
Procedure tExtObject.Draw;External;
Begin
End.
|