summaryrefslogtreecommitdiff
path: root/test/pending/run/t0947.scala
blob: 4297bb87773d698f97709a460cd77e955df71738 (plain) (blame)
1
2
3
4
5
6
7
8
import scala.tools.nsc._

object Test extends Application {
  class Foo { override def toString = "Foo" };

  val Int = new Interpreter(new Settings());
  Int.bind("foo", "Test.Foo", new Test.Foo());
}