summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/typeck-closure-to-unsafe-fn-ptr.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/typeck/typeck-closure-to-unsafe-fn-ptr.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/typeck/typeck-closure-to-unsafe-fn-ptr.rs b/src/test/ui/typeck/typeck-closure-to-unsafe-fn-ptr.rs
new file mode 100644
index 000000000..2530a1e96
--- /dev/null
+++ b/src/test/ui/typeck/typeck-closure-to-unsafe-fn-ptr.rs
@@ -0,0 +1,9 @@
+// run-pass
+
+unsafe fn call_unsafe(func: unsafe fn() -> ()) -> () {
+ func()
+}
+
+pub fn main() {
+ unsafe { call_unsafe(|| {}); }
+}