2011-09-13 08:50:03 -05:00
|
|
|
// error-pattern: not all control paths return a value
|
2011-05-31 14:24:18 -05:00
|
|
|
|
|
|
|
fn f() -> int {
|
2012-08-01 19:30:05 -05:00
|
|
|
// Make sure typestate doesn't interpreturn this alt expression
|
2011-07-27 07:19:39 -05:00
|
|
|
// as the function result
|
2012-02-15 02:40:42 -06:00
|
|
|
alt check true { true { } };
|
2011-05-31 14:24:18 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { }
|