*** empty log message ***

[SVN r27749]
This commit is contained in:
Thorsten Jørgen Ottosen
2005-03-21 00:01:27 +00:00
commit 5eaf3a0e88
119 changed files with 12996 additions and 0 deletions

6
test/cast.cpp Executable file
View File

@@ -0,0 +1,6 @@
int main()
{
void * p = 0;
void*& rp = p;
int*& p2 = *static_cast<int**>( &rp );
}