2013-01-23 15:07:00 +09:00
|
|
|
enum test {
|
2013-05-01 15:40:05 +10:00
|
|
|
div_zero = 1/0, //~ERROR expected constant: attempted to divide by zero
|
2013-04-24 13:01:38 +10:00
|
|
|
rem_zero = 1%0 //~ERROR expected constant: attempted remainder with a divisor of zero
|
2013-01-23 15:07:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|