Skip to content

Commit

Permalink
#2419. Add missing int ~/ double constants expression (#2444)
Browse files Browse the repository at this point in the history
Add missing int ~/ double constants expression.
  • Loading branch information
sgrekhov authored Dec 19, 2023
1 parent 69903f0 commit 67478ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Language/Expressions/Constants/math_operators_t09.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ class C {
ap = 1.42 ~/ 1.42,
aq = 5 ~/ 1,
ar = 0.2 ~/ 2,
as = 1 ~/ (2 + 1);
as = 1 ~/ (2 + 1),
at = 3 ~/ 1.1;

final a, b, c, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w,
x, y, z,
aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar,
as;
as, at;
}

main() {
Expand Down

0 comments on commit 67478ce

Please sign in to comment.