Consider the following: ```groovy class C { String value } def lists = [[[ [a:1] ]]] def result = lists*.value ``` The inferred type of "value" should be `Integer` and "result" should be `List<List<List<Integer>>>`.
Consider the following:
The inferred type of "value" should be
Integerand "result" should beList<List<List<Integer>>>.