You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
226 B

void foo(int a)
{
char ch;
ch = cast(char)a;
ch = cast(char)45;
ch = (char)a; // not a d cast
ch = (int) 45;
ch = cast(foo)*bar;
ch = cast(foo)-bar;
ch = cast(foo)+45;
ch = cast(foo)&45;
}