blob: 411c37311ae3d93358c4edbb9cf4d756fc7d4176 [file] [log] [blame]
// RUN: rm -rf %t
// RUN: mkdir %t
// RUN: %target-swift-frontend %s -parse -verify -show-diagnostics-after-fatal
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/def_func.swift -module-name new_module
// RUN: %target-swift-frontend %s -parse -I %t
// These errors should happen before we've built the module to import.
import new_module // expected-error{{no such module 'new_module'}}
new_module.getZero() // expected-error {{use of unresolved identifier 'new_module'}}