Files
swift-mirror/validation-test/Serialization/issue-46794.swift

17 lines
484 B
Swift

// RUN: %target-build-swift -emit-module %s
// REQUIRES: objc_interop
// https://github.com/apple/swift/issues/46794
import Foundation
/// Set of notifications that can be sent by this manager
extension Notification.Name {
/// Notifications that can be posted by the BLE code.
class BLE {
/// A notification posted when a new device has been discovered while scanning.
static var discoveredDevice = Notification.Name("my_unique_notification name")
}
}