Files
swift-mirror/test/IRGen/generic_enums.swift
Michael Gottesman fd4828e40a Eliminate -assume-parsing-unqualified-ownership-sil from tests.
I am doing this separately from the actual change to eliminate the option to
make it easier to review.
2018-12-19 12:54:13 -08:00

9 lines
126 B
Swift

// RUN: %target-swift-frontend -primary-file %s -emit-ir
struct Bar<A1, A2> {
var a: A1
var b: Foo<A1>
}
enum Foo<A> {}