On Monday, 16 August 2021 at 14:14:27 UTC, DLearner wrote:
Hi
Please see code below:
```
void main() {
import std.stdio;
size_t i;
size_t j;
i = 5;
writeln("i = ",i);
}
```
Is there a compiler option that would warn that variable 'j' is
defined but not used?
Best regards
On Monday, 16 August 2021 at 14:14:27 UTC, DLearner wrote:
Is there a compiler option that would warn that variable 'j' is
defined but not used?
Best regards
No in DMD but you can use
[D-Scanner](https://code.dlang.org/packages/dscanner) for that.
The check works reasonably as long as the
On Monday, 16 August 2021 at 14:14:27 UTC, DLearner wrote:
Hi
Please see code below:
```
void main() {
import std.stdio;
size_t i;
size_t j;
i = 5;
writeln("i = ",i);
}
```
Is there a compiler option that would warn that variable 'j' is
defined but not used?
Best regards
No.
https://github.com/dlang-community/D-Scanner#implemented-checks
Hi
Please see code below:
```
void main() {
import std.stdio;
size_t i;
size_t j;
i = 5;
writeln("i = ",i);
}
```
Is there a compiler option that would warn that variable 'j' is
defined but not used?
Best regards