mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
unittests/Support/Casting.cpp: [PR8226] Workaround for MSVC|Debug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148659 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4b4e62219b
commit
2a53577728
@ -69,7 +69,9 @@ namespace {
|
||||
|
||||
const foo *null_foo = NULL;
|
||||
|
||||
bar B;
|
||||
extern bar &B1;
|
||||
bar &B1 = B;
|
||||
extern const bar *B2;
|
||||
// test various configurations of const
|
||||
const bar &B3 = B1;
|
||||
@ -145,9 +147,6 @@ TEST(CastingTest, dyn_cast_or_null) {
|
||||
//foo &F23 = cast_or_null<foo>(B1);
|
||||
//const foo &F24 = cast_or_null<foo>(B3);
|
||||
|
||||
|
||||
bar B;
|
||||
bar &B1 = B;
|
||||
const bar *B2 = &B;
|
||||
} // anonymous namespace
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user