https://issues.dlang.org/show_bug.cgi?id=5038

Dmitry Olshansky <dmitry.o...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
                 CC|                            |dmitry.o...@gmail.com
         Resolution|---                         |WORKSFORME

--- Comment #8 from Dmitry Olshansky <dmitry.o...@gmail.com> ---
This compiles today on DMD v2.079.1:

class C {

    int height;
    int width;

    invariant {
        assert( height < 10 );
        assert( width < 11 );
    }
}

--

Reply via email to