isa<> tests
llvm-svn: 108851
diff --git a/llvm/unittests/Support/Casting.cpp b/llvm/unittests/Support/Casting.cpp
index d7e89f8..3a3af7e 100644
--- a/llvm/unittests/Support/Casting.cpp
+++ b/llvm/unittests/Support/Casting.cpp
@@ -22,8 +22,14 @@
extern bar &B1;
extern const bar *B2;
-TEST(CastingTest, Basics) {
+TEST(CastingTest, isa) {
+ // test various configurations of const
+ const bar &B3 = B1;
+ const bar *const B4 = B2;
EXPECT_TRUE(isa<foo>(B1));
+ EXPECT_TRUE(isa<foo>(B2));
+ EXPECT_TRUE(isa<foo>(B3));
+ EXPECT_TRUE(isa<foo>(B4));
}
bar B;