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
Imports currently use the syntax use sf module::qual (f1, f2);.
Ironically enough this has just confused the hell out of me, which, considering that I wrote the bloody thing, may be an indication that its wrong to do that.
Perhaps instead we should fully commit to the syntax used by rust, which is use sf module::qual::{f1, f2} because that is what I just (incorrectly) assumed it was.
I'd like an opinion by @Feliix42 , whether this would invalidate too many of your test cases?
The text was updated successfully, but these errors were encountered:
Imports currently use the syntax
use sf module::qual (f1, f2);
.Ironically enough this has just confused the hell out of me, which, considering that I wrote the bloody thing, may be an indication that its wrong to do that.
Perhaps instead we should fully commit to the syntax used by rust, which is
use sf module::qual::{f1, f2}
because that is what I just (incorrectly) assumed it was.I'd like an opinion by @Feliix42 , whether this would invalidate too many of your test cases?
The text was updated successfully, but these errors were encountered: