Files
swift-mirror/test/stdlib/Identifiable.swift
2019-07-09 14:17:20 -05:00

7 lines
138 B
Swift

// RUN: %target-typecheck-verify-swift
struct IdentifiableValue: Identifiable {
let id = 42
}
class IdentifiableClass: Identifiable {}