Note why this doesn't yet work.

llvm-svn: 89012
This commit is contained in:
Mike Stump 2009-11-17 00:30:31 +00:00
parent ce28f6f478
commit 8a5acf1440
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ void test1() {
S(bp == 0, 3);
ap = dynamic_cast<test1_A*>(&test1_d);
S(ap != 0, 4);
// FIXME: Doesn't work yet, gcc fails this at comepile time
// FIXME: Doesn't work yet, gcc fails this at compile time. We'd need access
// control for this to work.
// bp = dynamic_cast<test1_B*>(&test1_d);
// S(bp == 0, 5);
{