package com.redhat.ceylon.testFiles; public class TestConstructors extends Object { int a; public TestConstructors() { this.a = 0; } public TestConstructors(int a, float b) { } }