blob: 77f6a63c0c9a29dfa7f79c9a3436d9f61ad3a9b7 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// REQUIRES: objective-c++
// Make sure the test passes even if there's a link error, i.e. it isn't linked.
@interface I;
@end
extern void this_is_an_undefined_symbol();
int main(int, char**) {
this_is_an_undefined_symbol();
return 0;
}