class Parent{
int testText = 1;
}
class Child extends Parent{
open(){
@Output()
int testText = 2;
}
}
int testText = 2;
.testText = 2;
.class Child extends Parent{
open(){
@Output()
int testText = 2;
this.testText = 2;
// Присвоит значение в переменную у класса, а не в созданную выше.
// В данном случае у родителя из-за наследования.
}
}