It's because LT.. is interpreted as the . operator in the LT module.
<interactive>:1:2:
Failed to load interface for `LT':
Use -v to see a list of the files searched for.
It means GHC cannot find a module named LT. The same message appears if you use a qualified name with a non-existing library:
Prelude> SDJKASD.sdfhj
<interactive>:1:1:
Failed to load interface for `SDJKASD':
Use -v to see a list of the files searched for.
<interactive>:1:2:
A section must be enclosed in parentheses thus: (`LT..` GT)
In Haskell, a section is an infix operator with a partial application, e.g. (* 3), which is equivalent to \x -> x * 3.
In your case, LT.. is interpreted as an infix . operator, and the GT is part of the section formed with this operator.
A section must be enclosed in parenthesis, and since the misinterpretation does not, the parser will complain like this.
Another example of the error:
Prelude> [* 3]
<interactive>:1:2:
A section must be enclosed in parentheses thus: (* 3)
[1,2,3]. Maybe some other compiler read1.as floating point and then it's loose for it any sense. – Łukasz Niemier Nov 24 '11 at 18:43[1..3], your explanation can only tell why it would not work. – Tarrasch Nov 24 '11 at 18:51