2012-05-11 08:41:58 -05:00
|
|
|
const foo: int = 5;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// assigning to various global constants
|
2012-08-20 14:23:37 -05:00
|
|
|
None = Some(3); //~ ERROR assigning to static item
|
2012-06-30 06:23:59 -05:00
|
|
|
foo = 6; //~ ERROR assigning to static item
|
2012-05-11 08:41:58 -05:00
|
|
|
}
|