This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright Shunsuke Sogame 2008-2009. | |
| // Distributed under the terms of an MIT-style license. | |
| package mada.iter | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trait Func0 { | |
| type A1 <: Any | |
| type A2 <: Any | |
| type apply2[x <: A1, y <: A2] | |
| } | |
| type foo[f <: Func0 { type A1 >: String; type A2 >: Any }] = f#apply2[String, Any] | |
| trait f extends Func0 { | |
| type A1 = String | |
| type A2 = Any |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright Shunsuke Sogame 2008-2010. | |
| // Distributed under the terms of an MIT-style license. | |
| import sbt._ | |
| class HelloSbt(info: ProjectInfo) extends DefaultProject(info) { | |
| override def compileOptions = Seq(Deprecation, Unchecked/*, ExplainTypes*/) ++ compileOptions("-Yrecursion", "50") ++ super.compileOptions |
OlderNewer