IntelliJ Scala worksheet - package names don't correspond to directories -


i'm doing martin odersky's course on coursera.com , has class defined within scala worksheet this:

object intsets {   println("welcome scala ws") }  abstract class intset {   def incl(x: int): intset   def contains(x: int): boolean } 

and when in worksheet warning: "package names doesn't correspond directories structure, may cause problems resolve classes file". project freshly created using new project -> scala -> sbt. intellij 2017.

here screenshot: enter image description here


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -