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