1module Main where
2
3import Effect.Console (log)
4
5class Foo (a :: Symbol)
6
7instance fooX :: Foo "x"
8
9main = log "Done"
10