Files
swift-mirror/test/Sema/circularity_multifile_error.swift
2020-04-28 14:11:39 -07:00

12 lines
270 B
Swift

// RUN: %target-swift-frontend -emit-silgen -verify -primary-file %s %S/Inputs/circularity_multifile_error_helper.swift
// SR-4594
struct A {
var b: AnUndefinedType // expected-error {{cannot find type 'AnUndefinedType' in scope}}
}
struct B {
var a : External
}