blob: 2bb693f218122760ac33c76a39f796bf6f155c1d [file] [log] [blame]
protocol Attributed {
var asAttributes: DefaultedAttributes? { get }
}
extension Attributed {
var asAttributes: DefaultedAttributes? { return self as? DefaultedAttributes }
}
struct Impl: Attributed {
}