]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ClashingJavaImport.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ClashingJavaImport.scl
1 importJava "java.lang.String" where
2     valueOf :: Integer -> String 
3     valueOf :: Double -> String
4     
5 main = "Should not be executed."
6 --
7 3:5-3:32: Value valueOf has already been defined in this module.