mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Somehow, protocol conformance checking didn't actually care that this was missing... Swift SVN r21898
17 lines
447 B
Swift
17 lines
447 B
Swift
// RUN: %swift -parse -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!)
|
|
}
|