Files
swift-mirror/validation-test/compiler_crashers/0936-no-stacktrace.swift
Jordan Rose 2cd2d9ceb2 [test] Remove XFAIL lines from still-crashing compiler_crashers.
This is handled by the directory's lit.local.cfg.

Swift SVN r29238
2015-06-02 17:45:20 +00:00

15 lines
308 B
Swift

// RUN: not --crash %target-swift-frontend %s -parse
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
protocol C {
protocol B : a {
typealias d {
}
func a<T>() -> String
}
}
struct A : C