[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / libcxx / test / support / test.support / test_macros_header.rtti.pass.cpp
blobff8271cdd920d420cd667ddce77f52f6e9506fdb
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // Make sure the TEST_HAS_NO_RTTI macro is NOT defined when the no-rtti Lit
10 // feature isn't defined.
12 // UNSUPPORTED: no-rtti
14 #include "test_macros.h"
16 #ifdef TEST_HAS_NO_RTTI
17 # error "TEST_HAS_NO_RTTI should NOT be defined"
18 #endif
20 struct A { virtual ~A() { } };
21 struct B : A { };
23 int main(int, char**) {
24 A* ptr = new B;
25 (void)dynamic_cast<B*>(ptr);
26 delete ptr;
27 return 0;