summary refs log tree commit diff
path: root/src/test/run-pass/extern-methods.rs
AgeCommit message (Collapse)AuthorLines
2016-10-25adapt testsTim Neumann-0/+3
2015-04-21test: Fix fallout in testsAlex Crichton-6/+1
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-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-0/+2
2015-02-23Add marker trait to test (fixup #22538)Manish Goregaokar-1/+4
2015-02-22Properly translate methods with foreign CCSimonas Kazlauskas-0/+35
This fixes a general issue of trying to define extern functions inside impl blocks resulting in ICE. Fixes #21238 Fixes #20734 Fixes #19047