比如:
type t1=(br1,br2,br3);
type t2=(a,b,c,br1,br2,br3);现在我要给一个t1类型的变量赋值br2:
typde := br2;
但是编译出错:incompatible types: t1 and t2.
这种情况该怎么处理?