From: Ralf Jung Date: Mon, 16 Aug 2021 15:09:21 +0000 (+0200) Subject: rustup X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=9a6a5119fc3d6b40eeca8b6ec869af665fbe8ade;p=rust.git rustup --- diff --git a/rust-version b/rust-version index 1cf2fb4b0ff..6b176cc97bd 100644 --- a/rust-version +++ b/rust-version @@ -1 +1 @@ -fa2692990c05652c7823c8d2afae501a00a69050 +73d96b090bb68065cd3a469b27cbd568e39bf0e7 diff --git a/tests/compile-fail/function_calls/exported_symbol_wrong_type.rs b/tests/compile-fail/function_calls/exported_symbol_wrong_type.rs index 0a493e35a7c..3ffd506c94b 100644 --- a/tests/compile-fail/function_calls/exported_symbol_wrong_type.rs +++ b/tests/compile-fail/function_calls/exported_symbol_wrong_type.rs @@ -5,5 +5,5 @@ fn main() { extern "C" { fn FOO(); } - unsafe { FOO() } //~ ERROR unsupported operation: can't call foreign function: FOO + unsafe { FOO() } //~ ERROR attempt to call an exported symbol that is not defined as a function }