-
-
Notifications
You must be signed in to change notification settings - Fork 725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flatten modules order error #1998
Labels
question
Usage question
Comments
any regression over 3.5? |
@arnaudgiuliani 3.5 works fine. The module flattening refactor in 4.0 introduced this issue. |
for sure, it has been reworked in 3.6 Beta to fix memory allocation. Let me double check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
The order of modules after flattened is wrong.
Koin module and version:
koin-core:4.0.0
Snippet:
Expected behavior
This is because when
m3
gets flattened, we get modules in orderm3, m2, m1
, the expected order ism3, m1, m2
.The text was updated successfully, but these errors were encountered: