This PR adds a test for depending on two packages which privately import modules that define the same Lean definition. It verifies the current behavior of a symbol clash. This behavior will be fixed later this quarter.
7 lines
93 B
Text
7 lines
93 B
Text
module
|
|
import UseA
|
|
import UseB
|
|
|
|
def main : IO Unit := do
|
|
IO.println useA
|
|
IO.println useB
|