| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-07 | Test fixes and rebase conflicts | Alex Crichton | -21/+0 | |
| 2014-10-09 | test: Convert statics to constants | Alex Crichton | -1/+1 | |
| Additionally, add lots of tests for new functionality around statics and `static mut`. | ||||
| 2014-05-18 | Make bytes!() return 'static | Kevin Ballard | -0/+21 | |
| Change `bytes!()` to return { static BYTES: &'static [u8] = &[...]; BYTES } This gives it the `'static` lifetime, whereas before it had an rvalue lifetime. Until recently this would have prevented assigning `bytes!()` to a static, as in static FOO: &'static [u8] = bytes!(1,2,3); but #14183 fixed it so blocks are now allowed in constant expressions (with restrictions). Fixes #11641. | ||||
