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