view test/bug16.d @ 320:d772927ca496 trunk

[svn r341] Fix all regressions between [332] and [340]: - fixed assert on empty catch body - fixed(?) typedefed classes in catch specification - fixed assert with catchall Added some documentation.
author ChristianK
date Sat, 05 Jul 2008 13:05:29 +0200
parents 0b9b286b67b6
children
line wrap: on
line source

module bug16;

void func(long val)
{
    val >>= 32;
}

void main()
{
    func(64L);
}