Autocompletion not working for a Swift Subclass calling a Method in a Swift Extension (of an ObjC Class)

Originator:mc
Number:rdar://22306751 Date Originated:2015-08-17
Status:Open Resolved:
Product:Developer Tools Product Version:6.4
Classification:UI/Usabiblity Reproducible:Always
 
My code, in essence

    // Parent.h
    @interface Parent : NSObject {
    }

    // Parent.swift
    extension Parent {
      func foo() {
      }
    }

    // Child
    class Child : Parent {
      func bar() {
        // No autocompletion here for foo() — but it compiles :(
      }
    }

Comments


Please note: Reports posted here will not necessarily be seen by Apple. All problems should be submitted at bugreport.apple.com before they are posted here. Please only post information for Radars that you have filed yourself, and please do not include Apple confidential information in your posts. Thank you!