about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-13641.rs
AgeCommit message (Collapse)AuthorLines
2018-07-15Move some `compile-fail` tests to `ui`Esteban Küber-23/+0
2016-02-26Fix fallout in testsJeffrey Seyfried-4/+2
2015-02-24rustc_resolve: remove the distinction between DefStaticMethod and DefMethod.Eduard Burtescu-2/+2
2014-04-20rustc: Improve errors on private static methodsAlex Crichton-0/+25
This gives a better NOTE error message when a privacy error is encountered with a static method. Previously no note was emitted (due to lack of support), but now a note is emitted indicating that the struct/enum itself is private. Closes #13641