summaryrefslogtreecommitdiff
path: root/testsuite/tests/warnings/should_compile/T18402.hs
blob: f18d3b504694cf841234e2ae6dbaa359664ff095 (plain)
1
2
3
4
5
6
7
8
module T18402 where

a = ['b'      .. 'a'] -- empty
b = ['b', 'a' .. 'c'] -- empty
c = ['b', 'c' .. 'a'] -- empty
d = ['a'      .. 'c'] -- not empty
e = ['a', 'c' .. 'b'] -- not empty