summaryrefslogtreecommitdiff
path: root/Chalice/tests/regressions/internal-bug-6.chalice
blob: b02c1a6558e76149e31160ab0ac617ab4405ef60 (plain)
1
2
3
4
5
6
7
8
9
10
class Cell  {
 
  function foo(): Cell
  { this }

  method m(b: bool)
  {
    var c: Cell := b ? null : foo()
  }
}