File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public void Can_get_array_types_when_nested()
8787 // Append to nested array
8888 context
8989 . ArrayAppendLong ( arrayOffset , 1 )
90- . ArrayAppendObject ( arrayOffset , out var nestedObjectOffset )
90+ . ArrayAppendObject ( arrayOffset , out _ )
9191 . ArrayAppendString ( arrayOffset , "test"u8 ) ;
9292
9393 // Test type queries on nested array
@@ -105,7 +105,7 @@ public void Can_get_root_type_with_context_API()
105105 // Test object root
106106 var context = Lite3Context . Create ( ) ;
107107
108- using ( var scope = context . BeginScope ( ) )
108+ using ( context . BeginScope ( ) )
109109 {
110110 context . InitializeObject ( ) ;
111111
@@ -115,7 +115,7 @@ public void Can_get_root_type_with_context_API()
115115 // Test array root
116116 context = Lite3Context . Create ( ) ;
117117
118- using ( var scope = context . BeginScope ( ) )
118+ using ( context . BeginScope ( ) )
119119 {
120120 context . InitializeArray ( ) ;
121121
You can’t perform that action at this time.
0 commit comments