2014-03-06 22:48:52 +01:00
|
|
|
// Checks that immutable static items can't have mutable slices
|
2014-01-25 12:48:57 -05:00
|
|
|
|
2015-01-08 21:54:35 +11:00
|
|
|
static TEST: &'static mut [isize] = &mut [];
|
2025-06-27 15:32:53 +02:00
|
|
|
//~^ ERROR mutable borrows of temporaries
|
2014-01-25 12:48:57 -05:00
|
|
|
|
2014-03-06 22:48:52 +01:00
|
|
|
pub fn main() { }
|