aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t7825.scala
blob: 65ca06fdfc0906855f931b16c32ce65b53c5b4ba (plain) (tree)

































                                                                                                      
import scala.tools.partest._

object Test extends CompilerTest {
  import global._

  override lazy val units: List[CompilationUnit] = {
    // We can test this on JDK6.
    javaCompilationUnits(global)(defaultMethodSource) ++ compilationUnits(global)(scalaExtendsDefault)
  }

  private def defaultMethodSource = """
public interface Iterator<E> {
    boolean hasNext();
    E next();
    default void remove() {
        throw new UnsupportedOperationException("remove");
    }
}
  """

  private def scalaExtendsDefault = """
object Test {
  object X extends Iterator[String] {
    def hasNext = true
    def next = "!"
  }
}
  """

  // We're only checking we that the Scala compilation unit passes refchecks
  // No further checks are needed here.
  def check(source: String, unit: global.CompilationUnit): Unit = {
  }
}