namespace GjsConstructorTest { public class TestClass : GLib.Object { private int field; public TestClass () { this.field = 5; } public int getField () { return this.field; } } }