Files
swift-mirror/validation-test/compiler_crashers_2/0121-rdar26498438.swift
Arnold Schwaighofer 66a2f5d05d Disable test that fails on linux asan bot
rdar://26498438
2017-11-27 14:35:06 -08:00

44 lines
493 B
Swift

// RUN: not --crash %target-swift-frontend %s -emit-ir
// rdar://26498438
// REQUIRES: no_asan
class C { }
protocol PI
{
init()
}
protocol MDS
{
associatedtype Index : PI
func f(_ : MVC<Index, Self>, atIndex index : Index) -> C?
}
class MVC<Index : PI, DataSource : MDS>: C where DataSource.Index == Index
{
}
struct LPI : PI
{
var x : Int
var y : Int
}
extension LPI
{
init()
{
x = 0
y = 0
}
}
class LPVC: MVC<LPI, LPVC>
{
}