W1011 Text after final 'END.' - ignored by compiler (Delphi)
Go Up to Error and Warning Messages (Delphi)
Identifier
The identifier for the $WARN directive: GARBAGE
Description
This warning is given when there is still source text after the final end and the period that constitutes the logical end of the program. Possibly the nesting of begin-end is inconsistent (there is one end too many somewhere). Check whether you intended the source text to be ignored by the compiler - maybe it is actually quite important.
program Produce; begin end. Text here is ignored by Delphi 16-bit - Delphi 32-bit or Kylix gives a warning. program Solve; begin end.