1<!-- Generated with Stardoc: http://skydoc.bazel.build --> 2 3The input file for struct default values test 4 5<a id="check_struct_default_values"></a> 6 7## check_struct_default_values 8 9<pre> 10check_struct_default_values(<a href="#check_struct_default_values-struct_no_args">struct_no_args</a>, <a href="#check_struct_default_values-struct_arg">struct_arg</a>, <a href="#check_struct_default_values-struct_args">struct_args</a>, <a href="#check_struct_default_values-struct_int_args">struct_int_args</a>, 11 <a href="#check_struct_default_values-struct_struct_args">struct_struct_args</a>) 12</pre> 13 14Checks the default values of structs. 15 16**PARAMETERS** 17 18 19| Name | Description | Default Value | 20| :------------- | :------------- | :------------- | 21| <a id="check_struct_default_values-struct_no_args"></a>struct_no_args | struct with no arguments | <code>struct()</code> | 22| <a id="check_struct_default_values-struct_arg"></a>struct_arg | struct with one argument | <code>struct(foo = "bar")</code> | 23| <a id="check_struct_default_values-struct_args"></a>struct_args | struct with multiple arguments | <code>struct(bar = "foo", foo = "bar")</code> | 24| <a id="check_struct_default_values-struct_int_args"></a>struct_int_args | struct with int arguments | <code>struct(one = 1, three = 3, two = 2)</code> | 25| <a id="check_struct_default_values-struct_struct_args"></a>struct_struct_args | struct with struct arguments | <code>struct(multiple = struct(one = 1, three = 3, two = 2), none = struct(), one = struct(foo = "bar"))</code> | 26 27 28