You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code produces the expected Error: octal digit expected, not '9' error, but the line and column point to the start of the array literal instead of the 09. In this example, it reports sample.d(1,12) instead of the expected sample.d(16,1).
Removing the braces causes dmd to report the correct line and column values.
The text was updated successfully, but these errors were encountered:
This code produces the expected
Error: octal digit expected, not '9'
error, but the line and column point to the start of the array literal instead of the 09. In this example, it reportssample.d(1,12)
instead of the expectedsample.d(16,1)
.Removing the braces causes dmd to report the correct line and column values.
The text was updated successfully, but these errors were encountered: