mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
306 B
Swift
12 lines
306 B
Swift
// RUN: %target-swift-frontend -emit-silgen -verify -primary-file %s %S/Inputs/circularity_multifile_error_helper.swift
|
|
|
|
// https://github.com/apple/swift/issues/47171
|
|
|
|
struct A {
|
|
var b: AnUndefinedType // expected-error {{cannot find type 'AnUndefinedType' in scope}}
|
|
}
|
|
|
|
struct B {
|
|
var a : External
|
|
}
|