tlang/source/tlang/testing/simple_cast_complex_type.t

9 lines
126 B
Raku

module simple_cast_complex_type;
int myInt;
void function(int x)
{
byte bruh;
byte myByte = (cast(byte)int*)+bruh;
}