Crash with import statement
According to docs the following syntaxes are allowed:
use <module>.<name>
use <name1>, <name2> from <module[.submodule]>
Let us take use log from math
that works. But if we accidentally omit the from math
and only type use log
there is a crash (no syntax error).