public protocol PP0 { func pp0f0() } internal protocol IP0 { func ip0f0() } extension Int : PP0, IP0 { public func pp0f0() {} func ip0f0() {} }