Files
swift-mirror/validation-test/execution/crashers_fixed/rdar33767511.swift
Michael Gottesman 75c0572afa As per Jordan's request, move execution_crashers => execution.
I thought these were all execution time crashers, but I was incorrect. Some are
just execution tests that take a little bit to run.
2018-01-29 10:31:51 -08:00

29 lines
454 B
Swift

// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: %target-build-swift %s -o %t/a.out
// RUN: %target-run %t/a.out
// REQUIRES: executable_test
// REQUIRES: OS=macosx
// "cyclic metadata dependency detected, aborting"
struct X<T> {
enum S {
case some(T), none
}
init() { a = .none }
var a: S
}
func generic<T>(_: T) {}
// We don't want the metadata allocation to be optimized away
@_optimize(none)
func main() {
generic(X<()>())
}
main()