public record Test(int a, int b){
}

class InheritedTest extends Test{
public InheritedTest(){}
}


