summary refs log tree commit diff
path: root/src/test/run-pass/static-function-pointer.rs
AgeCommit message (Collapse)AuthorLines
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-26Mass rename uint/int to usize/isizeAlex Crichton-4/+4
Now that support has been removed, all lingering use cases are renamed.
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.
2014-02-24All uses of `extern fn` should mean `extern "C" fn`. Closes #9309.Nick Cameron-2/+2
2013-08-21Changed `fn main` to `pub fn main`Andreas Martens-1/+1
2013-08-21Split cross-crate test into own test and xfail-fast itAndreas Martens-10/+1
2013-08-18Add assertions and cross crate testsAndreas Martens-2/+16
2013-08-18Fix ICE when calling static and static function pointersAndreas Martens-0/+19
Fixes #8588