You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently import std.types will always import module types into variable types, or import std.term.colors: Fg will always import name Fg from module std.term.colors into variable Fg.
What we want to allow are these:
>>> import std.types as lol_std_types
... or:
>>> import import std.term.colors: Fg as colors_fg
... or even:
>>> import import std.term.colors: Fg as colors_fg, Bg as colors_bg
The text was updated successfully, but these errors were encountered:
Currently
import std.types
will always import moduletypes
into variabletypes
, orimport std.term.colors: Fg
will always import nameFg
from modulestd.term.colors
into variableFg
.What we want to allow are these:
... or:
... or even:
The text was updated successfully, but these errors were encountered: