[Issue 12970] New: Enclosing @system attribute is precedence than postfix @safe

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Mon Jun 23 07:58:41 PDT 2014


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

          Issue ID: 12970
           Summary: Enclosing @system attribute is precedence than postfix
                    @safe
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: wrong-code
          Severity: normal
          Priority: P1
         Component: DMD
          Assignee: nobody at puremagic.com
          Reporter: k.hara.pg at gmail.com

Test case:

@system {

@safe void f1() {}
void f2() @safe {}

pragma(msg, typeof(f1));    // @safe void() - OK
pragma(msg, typeof(f2));    // @system void() - !?

}

Both f1 and f2 should be marked as @safe.

--


More information about the Digitalmars-d-bugs mailing list