• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 import Foundation;
3 
4 @objc
5 public class FooWrapper : NSObject {
6   @objc
hellonull7   public func hello(name: String) -> String {
8     return Foo(name: "Foo").hello(name: name);
9   }
10 }
11