about summary refs log tree commit diff
path: root/src/test/compile-fail/native-unsafe-fn.rs
AgeCommit message (Collapse)AuthorLines
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-13/+0
2012-06-30change the test suite `//! kind` syntax to `//~ kind` in order to avoid aGareth Daniel Smith-1/+1
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
2012-05-09implement new borrow ck (disabled by default)Niko Matsakis-1/+1
2011-11-16Use attributes for native module ABI and link nameHaitao Li-1/+2
This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547
2011-11-09Add "cdecl" as synonym for "c-stack-cdecl"Brian Anderson-1/+1
2011-11-08Remove all uses of native cdecl except for those that yieldBrian Anderson-1/+1
2011-10-12add some new testsNiko Matsakis-0/+12