Search

March 29
General »
...not initialized
```

Now throw in loops and goto's, and DFA is needed. Compiler optimizers...
March 28
Issues »
https://issues.dlang.org/show_bug.cgi?id=24460

elpenguino+D@gmail.com changed:

           What...
March 28
Issues »
https://issues.dlang.org/show_bug.cgi?id=24460

elpenguino+D@gmail.com changed:

           What...
March 28
Issues »
...problem is that you are not rethrowing the exception/error if you use a goto.

--
March 28
Issues »
https://issues.dlang.org/show_bug.cgi?id=24460

RazvanN <razvan.nitu1305@gmail.com> changed...
March 28
Learn »
...0] == 10) {
                write("LF");
            }
            if (i > 5) {
                goto b;
            }

        }
    }
b: {

        writeln("\n\nin b");
        i...
March 27
Issues »
...ID: 24460
           Summary: scope(failure) with a goto breaks safety
           Product: D
           Version: D2
          Hardware...
February 29
General »
...on a structured program. Rust has no goto.

My example in fact follows that style...
February 27
Issues »
...org/spec/expression.html#shift_expressions

I believe, the goto solution here is checked int.

--
February 12, 2024
General »
...loopBodyBeforeCondition();
		if (cond) break; // loop exit
		loopBodyAfterCondition();
		goto loopStart;

When loopBodyBeforeCondition is empty, you have...
1 2 3 4 5 6 7 8
Next ›   Last »