Add the needed type annotation for cycle (recursive lazy value)

n8han 2011-06-18 15:36:03 -07:00
parent 27b87fc036
commit d45ed34164
1 changed files with 1 additions and 1 deletions

@ -20,7 +20,7 @@ object MyBuild extends Build
// Declare a project with ID 'sub1' in directory 'a'.
// Declare a classpath dependency on sub2 in the 'test' configuration.
lazy val sub1 = Project("sub1", file("a")) dependsOn(sub2 % "test")
lazy val sub1: Project = Project("sub1", file("a")) dependsOn(sub2 % "test")
// Declare a project with ID 'sub2' in directory 'b'.
// Declare a configuration dependency on the root project.