From 6569bf0bd230434c140f84c3606da978b7dc8025 Mon Sep 17 00:00:00 2001 From: Adrien Vannson Date: Tue, 7 Jan 2025 17:42:20 +0100 Subject: [PATCH] Add proto file for unwrap test --- tests/inputs/unwrap/unwrap.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/inputs/unwrap/unwrap.proto diff --git a/tests/inputs/unwrap/unwrap.proto b/tests/inputs/unwrap/unwrap.proto new file mode 100644 index 00000000..15cdfe3c --- /dev/null +++ b/tests/inputs/unwrap/unwrap.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; + +package unwrap; + +message NestedMessage { + int32 x = 1; +} + +message Message { + NestedMessage x = 1; +}