| // Copyright 2022 The Flutter Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. |
| |
| const a = 'aaaaa'; |
| |
| const list1 = []; |
| const list2 = <String>[]; |
| const list3 = ['', '$a']; |
| const list4 = <String>['', '$a']; |
| |
| const set1 = {}; |
| const set2 = <String>{}; |
| const set3 = {'', '$a'}; |
| const set4 = <String>{'', '$a'}; |
| |
| const map1 = <String, String>{}; |
| const map2 = {'': '$a'}; |
| const map3 = <String, String>{'': '$a'}; |