File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ enum Colors {
6
6
Cornflower /* blue */ ,
7
7
/** Fancy name for 'pink'*/
8
8
FancyPink
9
- }
9
+ } // trailing comment
10
10
var x = Colors . Cornflower ;
11
11
x = Colors . FancyPink ;
12
12
@@ -20,7 +20,7 @@ var Colors;
20
20
Colors [ Colors [ "Cornflower" ] = 0 ] = "Cornflower" ; /* blue */
21
21
/** Fancy name for 'pink'*/
22
22
Colors [ Colors [ "FancyPink" ] = 1 ] = "FancyPink" ;
23
- } ) ( Colors || ( Colors = { } ) ) ;
23
+ } ) ( Colors || ( Colors = { } ) ) ; // trailing comment
24
24
var x = 0 /* Cornflower */ ;
25
25
x = 1 /* FancyPink */ ;
26
26
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ enum Colors {
8
8
Cornflower /* blue */ ,
9
9
/** Fancy name for 'pink'*/
10
10
FancyPink
11
- }
11
+ } // trailing comment
12
12
var x = Colors . Cornflower ;
13
13
x = Colors . FancyPink ;
14
14
You can’t perform that action at this time.
0 commit comments