This
fn main() {
let test = "Foo".to_string();
test.to_lowercase();
}
produces an error
error: use of unstable library feature 'collections'
test.to_lowercase();
^~~~~~~~~~~~~~
but I am using
rustc 1.2.0-nightly (f76d9bcfc 2015-05-28) (built 2015-05-28)
and according to http://doc.rust-lang.org/1.0.0/book/release-channels.html unstable features are enabled on nightly. I've also tried stable and beta, but the error is exactly the same. So what's the issue here?