parent
4e26e40907
commit
77ee83b8da
3 changed files with 34 additions and 0 deletions
@ -0,0 +1,13 @@ |
||||
edition = "2023"; |
||||
|
||||
package protobuf_unittest; |
||||
|
||||
import "google/protobuf/descriptor.proto"; |
||||
|
||||
message LateLoadedOption { |
||||
int32 value = 1; |
||||
|
||||
extend google.protobuf.MessageOptions { |
||||
LateLoadedOption ext = 95126892; |
||||
} |
||||
} |
@ -0,0 +1,11 @@ |
||||
edition = "2023"; |
||||
|
||||
package protobuf_unittest; |
||||
|
||||
import "google/protobuf/late_loaded_option.proto"; |
||||
|
||||
message LateLoadedOptionUser { |
||||
option (protobuf_unittest.LateLoadedOption.ext) = { |
||||
value: 1 |
||||
}; |
||||
} |
Loading…
Reference in new issue