[test] Add support for Objective-C++ tests

Differential revision: https://reviews.llvm.org/D33049

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@303466 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Erik Pilkington
2017-05-19 23:02:49 +00:00
parent 9e6b540dad
commit 64182a5877
7 changed files with 87 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#if __has_feature(objc_arc)
#error "arc should *not* be enabled"
#endif
int main()
{
}