February 06, 2019
https://issues.dlang.org/show_bug.cgi?id=19654

          Issue ID: 19654
           Summary: [REG master] cannot have final methods in objc
                    interfaces
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Mac OS X
            Status: NEW
          Severity: regression
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: doob@me.com

The following code compiles successfully with DMD 2.084.0 but fails with master:

extern (Objective-C)
interface Bar
{
    final void foo() @selector("foo") {}
}

--