summaryrefslogtreecommitdiff
path: root/test/files/neg/bug118.scala
blob: 45f3ff607687801aa89f3bb5379073bd92be9473 (plain) (blame)
1
2
3
4
5
6
class C(y: Int) {
    def this() = {
    	this(1);
    	return null;
    }
}