Not able to inherit from NSObject in unit test

The following code compiles fine in a normal Swift app, but not in the accompanying unit test bundle.

I don't have any idea why.

import Foundation

struct Dummy: NSObject { // Error: Inheritance from non-protocol type 'NSObject'
    var name: String?
}

Can I delete this question? It's stupid because I was overwhelmed by other learning problems and asked this silly question.

Not able to inherit from NSObject in unit test
 
 
Q