Files
swift-mirror/test/Serialization/Inputs/def_enum.swift
Doug Gregor fab5e741bd Unrevert "Sema: Make derived conformances work from extensions"
Update IRGen test for 32/64-bit differences.

Swift SVN r28988
2015-05-24 17:55:42 +00:00

40 lines
557 B
Swift

public enum Basic {
case Untyped
case HasType(Int)
public init() {
self = .Untyped
}
public func doSomething() {}
}
public enum Generic<A> {
case Left(A)
case Right(A)
}
public protocol Computable {
func compute()
}
public enum Lazy<T> : Computable {
case Thunk(() -> T)
case Value(T)
public init(value: T) {
self = .Value(value)
}
public func compute() {
// if (this ~= .Thunk(var fn)) {
// this = .Value(fn())
// }
}
}
public enum Breakfast<Champions> : Int {
case Eggs
case Bacon
case Coffee
}