about summary refs log tree commit diff
path: root/src/test/compile-fail/static-method-privacy.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-20/+0
2014-02-07Added tests to make tidyDerek Guenther-0/+10
2013-08-27librustc: Ensure that type parameters are in the right positions in paths.Patrick Walton-1/+1
This removes the stacking of type parameters that occurs when invoking trait methods, and fixes all places in the standard library that were relying on it. It is somewhat awkward in places; I think we'll probably want something like the `Foo::<for T>::new()` syntax.
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-1/+1
2013-03-19librustc: Enforce privacy for static methods.Patrick Walton-0/+11
This starts moving a bunch of privacy checks into the privacy checking phase and out of resolve.