mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-26 20:13:35 +02:00
13 lines
165 B
ObjectPascal
13 lines
165 B
ObjectPascal
unit TestUnitAlias2;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
uses
|
|
Test.Foo.Alias1; // replaced with bar
|
|
//Test.Foo.Alias2; // replaced with Test.Foo.SomeLongUnitName
|
|
|
|
end.
|
|
|