about summary refs log tree commit diff
path: root/src/test/run-pass/mutable-huh-variance-vec2.rs
AgeCommit message (Collapse)AuthorLines
2013-03-26libcore: Change `[const T]` to `const [T]` everywherePatrick Walton-23/+0
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-2/+2
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-2/+2
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-1/+1
2011-11-16rustc: Accept 'const' as synonym for 'mutable?'Brian Anderson-1/+1
2011-10-18Immutable and mutable? are covariant on their inner typesBrian Anderson-0/+13
Whereas [mutable T] is invariant with respect to T, [T] and [mutable? T] are covariant with respect to T.