9a8dc14616
Currently kotlin-stdlib-common doesn't have serialized built-ins inside, so in a multiplatform project, it was possible that either JVM or JS built-ins (depending on the order of entries in the project configuration) were going to be used for the analysis of a common module depending on kotlin-stdlib-common. This resulted, for example, in additional built-in member calls (e.g. "List.stream()") being unresolved in JVM modules when they used the List instance coming from the common module (see the added test)