blob: 9fab436274b02b331f40414425450fd40a25c80e [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// http://www.openradar.me/18072376
public class A<T> {
var b: A<T>?
}
A<Int>()