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
--!strictlocalitem:"foo"="bar"-- TypeError: Type '"bar"' could not be converted into '"foo"', good!item=iftruethen"foo"else"foo"-- TypeError: Type 'string' could not be converted into '"foo"', bad!localitem2:"foo"=iftruethen"doge"else"doge2"-- no error, bad!
There's two issues here:
On line 2, the solver expands from the singletons to the generic string type which causes assignment issues
On line 4 (and the main title of this issue), the solver does not report any errors! Based on line 1, this should report an error.