1bc32b5cfSEric Fiselier //===----------------------------------------------------------------------===//
2bc32b5cfSEric Fiselier //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6bc32b5cfSEric Fiselier //
7bc32b5cfSEric Fiselier //===----------------------------------------------------------------------===//
8bc32b5cfSEric Fiselier
9bc32b5cfSEric Fiselier // INVOKE (f, t1, t2, ..., tN)
10bc32b5cfSEric Fiselier
11bc32b5cfSEric Fiselier // The tests for INVOKE (f, t1, t2, ..., tN) live in the "test/libcxx" tree
12bc32b5cfSEric Fiselier // since they require calling the implementation specific "__invoke" and
13bc32b5cfSEric Fiselier // "__invoke_constexpr" functions.
14bc32b5cfSEric Fiselier
main(int,char **)15*2df59c50SJF Bastien int main(int, char**) {
16*2df59c50SJF Bastien return 0;
17*2df59c50SJF Bastien }
18