If you try to assign an `INTEGER` literal to a variable of type `REAL`, the program will silently crash. For example: ```pseudo DECLARE Pi : REAL Pi <- 3 // Will cause a silent crash ```