I notice when declaring a type alias in the REPL, a line break causes a statement to succeed:
this works:
scala> type a
| 3 == 3
defined type alias a
res32: Boolean = true
This does not:
scala> type a 3 == 3 ^
error: `=`, `>:`, or `<:` expected