2011-05-04 11:32:06 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn g() { }
|
2011-05-04 11:32:06 -07:00
|
|
|
|
2012-05-22 21:36:50 -07:00
|
|
|
pure fn f(_q: int) -> bool {
|
2012-05-24 23:44:58 -07:00
|
|
|
g(); //! ERROR access to impure function prohibited in pure context
|
2012-05-22 21:36:50 -07:00
|
|
|
ret true;
|
|
|
|
}
|
2011-05-04 11:32:06 -07:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let x = 0;
|
2011-05-04 11:32:06 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
check (f(x));
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|