about summary refs log tree commit diff
path: root/src/test/compile-fail/static-lifetime-bound.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-16/+0
2017-03-25Warn when using a `'static` lifetime boundAdam Ransom-0/+16
Previously a `'static` lifetime bound would result in an `undeclared lifetime` error when compiling, even though it could be considered valid. However, it is unnecessary to use it as a lifetime bound so we present the user with a warning instead and suggest using the `'static` lifetime directly, in place of the lifetime parameter.