summary refs log tree commit diff
path: root/src/test/run-pass/ufcs-polymorphic-paths.rs
AgeCommit message (Collapse)AuthorLines
2016-03-12std: Clean out deprecated APIsAlex Crichton-3/+11
Removes all unstable and deprecated APIs prior to the 1.8 release. All APIs that are deprecated in the 1.8 release are sticking around for the rest of this cycle. Some notable changes are: * The `dynamic_lib` module was moved into `rustc_back` as the compiler still relies on a few bits and pieces. * The `DebugTuple` formatter now special-cases an empty struct name with only one field to append a trailing comma.
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-12/+28
This commit removes all unstable and deprecated functions in the standard library. A release was recently cut (1.3) which makes this a good time for some spring cleaning of the deprecated functions.
2015-06-17Fallout in tests and docs from feature renamingsAlex Crichton-1/+2
2015-05-04Remove several FIXMEsJohannes Oertel-8/+4
2015-04-14test: Fix fallout in run-pass testsAlex Crichton-4/+12
2015-04-08Remove pretty-expanded from failing testsAlex Crichton-1/+0
This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable.
2015-03-23Test fixes and rebase conflicts, round 2Alex Crichton-1/+1
2015-03-23rustdoc: Replace no-pretty-expanded with pretty-expandedBrian Anderson-0/+2
Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work.
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-1/+1
2015-02-24Implement `<T>::method` UFCS expression syntax.Eduard Burtescu-0/+11
2015-02-24tests: remove warnings from and rename const-polymorphic-paths to ↵Eduard Burtescu-0/+121
ufcs-polymorphic-paths.