blob: 77f6a63c0c9a29dfa7f79c9a3436d9f61ad3a9b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//===----------------------------------------------------------------------===//
//
// 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;
}
|