summaryrefslogtreecommitdiff
path: root/test/files/run/t5271_2.check
blob: 5a519f265fdac1f6960c57924c3ead2a8c7f28c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  case class C extends Object with ScalaObject with Product with Serializable {
    <caseaccessor> <paramaccessor> val foo : Int = _;
    <caseaccessor> <paramaccessor> val bar : Int = _;
    def <init>(foo: Int, bar: Int) = {
      super.<init>();
      ()
    }
  };
  val c = C.apply(2, 2);
  scala.this.Predef.println(c.foo.$times(c.bar))
}