mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
236 B
Swift
11 lines
236 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift -emit-module -o %t/M.swiftmodule %s %S/Inputs/issue-46500-other.swift
|
|
|
|
// https://github.com/apple/swift/issues/46500
|
|
|
|
public enum A {}
|
|
|
|
public extension A {
|
|
public enum B {}
|
|
}
|