cast icon indicating copy to clipboard operation
cast copied to clipboard

cast protobuf enum return 0

Open zibber2015 opened this issue 2 years ago • 0 comments

version: 1.5 1.3

test.proto

enum N {
   DEFAULT = 0;
   ONE =  1;
}

message Test {
    N  num  = 1;
}

main.go

a := &pb.Test{ Num:  123 }

cast.toInt32(a)   //return 0
int32(a)   //return 123

zibber2015 avatar Dec 14 '22 01:12 zibber2015