Files
swift-mirror/test/Sema/enum_raw_representable_multi_file.swift
David Farler b7d17b25ba Rename -parse flag to -typecheck
A parse-only option is needed for parse performance tracking and the
current option also includes semantic analysis.
2016-11-28 10:50:55 -08:00

17 lines
469 B
Swift

// RUN: %target-swift-frontend -typecheck -verify -primary-file %s %S/Inputs/enum_multi_file_helper.swift
var raw1: Int = Foo.a.rawValue
var raw2: Bar.RawValue = 0
var cooked1: Foo? = Foo(rawValue: raw1)
var cooked2: Bar? = Bar(rawValue: 22)
var cooked3: Baz? = Baz(rawValue: 0)
var cooked4: Garply? = Garply(rawValue: "A")
func consume<T: RawRepresentable>(_ obj: T) {}
func test() {
consume(cooked1!)
consume(cooked2!)
consume(cooked3!)
consume(cooked4!)
}