Skip to content

Commit c512872

Browse files
committed
Attempt to remove left recursion.
1 parent 2037e3f commit c512872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

standard/types.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ interface_type
5454
;
5555
5656
array_type
57-
: non_array_type rank_specifier+
57+
| non_array_type rank_specifier+
58+
| non_array_type ( nullable_type_annotation rank_specifier+ )+
5859
;
5960
6061
non_array_type
@@ -64,7 +65,6 @@ non_array_type
6465
| delegate_type
6566
| 'dynamic'
6667
| type_parameter
67-
| nullable_reference_type
6868
| pointer_type // unsafe code support
6969
;
7070

0 commit comments

Comments
 (0)