[#1113] | project: compiler | priority: low | category: bug | |
---|---|---|---|---|
submitter | assigned to | status | date submitted | |
Burak | _ | _ | 2007-05-18 23:44:58.0 | |
subject | case class equals ignores outer | |||
code |
class X { case class C(id : Int) } val a = new X val b = new X println(a.C(5) == b.C(5)) |
|||
what happened | The following code prints 'true': |
|||
what expected | false | |||
[back to overview] |