summary refs log tree commit diff
path: root/src/test/run-pass/invoke-external-foreign.rs
AgeCommit message (Collapse)AuthorLines
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-0/+12
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.