mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
17 lines
469 B
Swift
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!)
|
|
}
|