| Index: test/codegen_expected/language/issue_23914_test.js | 
| diff --git a/test/codegen_expected/language/issue_23914_test.js b/test/codegen_expected/language/issue_23914_test.js | 
| index f4f09f56e499cf319357b1b64c801a0f2a53f34c..701d382c9533f02cc7637fe6b53597c830d22b29 100644 | 
| --- a/test/codegen_expected/language/issue_23914_test.js | 
| +++ b/test/codegen_expected/language/issue_23914_test.js | 
| @@ -7,10 +7,12 @@ dart_library.library('language/issue_23914_test', null, /* Imports */[ | 
| const dart = dart_sdk.dart; | 
| const dartx = dart_sdk.dartx; | 
| const issue_23914_test = Object.create(null); | 
| -  let LinkedListOfLinkedListEntry = () => (LinkedListOfLinkedListEntry = dart.constFn(collection.LinkedList$(collection.LinkedListEntry)))(); | 
| +  let LinkedListEntryOfE = () => (LinkedListEntryOfE = dart.constFn(collection.LinkedListEntry$(E)))(); | 
| +  let LinkedListEntryOfLinkedListEntryOfE = () => (LinkedListEntryOfLinkedListEntryOfE = dart.constFn(collection.LinkedListEntry$(LinkedListEntryOfE())))(); | 
| +  let LinkedListOfLinkedListEntryOfLinkedListEntryOfE = () => (LinkedListOfLinkedListEntryOfLinkedListEntryOfE = dart.constFn(collection.LinkedList$(LinkedListEntryOfLinkedListEntryOfE())))(); | 
| let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))(); | 
| issue_23914_test.main = function() { | 
| -    let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntry())()); | 
| +    let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntryOfLinkedListEntryOfE())()); | 
| }; | 
| dart.fn(issue_23914_test.main, VoidTodynamic()); | 
| // Exports: | 
|  |