✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Язык Go. Даны типы:
type A struct{
value
int}
type B
struct{
A
}
и две переменные:
var objA A
var objB B
допустимо ли следующее преобразование типов:
objA = A(objB)