https://issues.dlang.org/show_bug.cgi?id=19699
Jacob Carlborg <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Jacob Carlborg <[email protected]> --- I've found what the problem is. I'll try to make a PR as soon as I can. The actual issue is that there's no base class, in combination with a body for the function. Usually the code will look like this: extern (Objective-C) class NSObject { ... } extern (Objective-C) class Test : NSObject { ... } It's extremely rare to define a new root class in Objective-C. --
