]> git.lizzy.rs Git - rust.git/commitdiff
Add unimplemented! macro
authorBrendan Zabarauskas <bjzaba@yahoo.com.au>
Fri, 7 Feb 2014 10:18:17 +0000 (21:18 +1100)
committerBrendan Zabarauskas <bjzaba@yahoo.com.au>
Fri, 7 Feb 2014 17:43:39 +0000 (04:43 +1100)
src/libstd/macros.rs
src/test/run-fail/unimplemented-macro-fail.rs [new file with mode: 0644]

index cd81d6037e64e5411f260e6dddcc218032fe4a7c..e67ac24fcd54ed8beb488d6a06c79e18d14296bf 100644 (file)
@@ -123,6 +123,13 @@ macro_rules! unreachable (() => (
     fail!("internal error: entered unreachable code");
 ))
 
+/// A standardised placeholder for marking unfinished code. It fails with the
+/// message `"not yet implemented"` when executed.
+#[macro_export]
+macro_rules! unimplemented(
+    () => (fail!("not yet implemented"))
+)
+
 #[macro_export]
 macro_rules! format(($($arg:tt)*) => (
     format_args!(::std::fmt::format, $($arg)*)
diff --git a/src/test/run-fail/unimplemented-macro-fail.rs b/src/test/run-fail/unimplemented-macro-fail.rs
new file mode 100644 (file)
index 0000000..7eff1fe
--- /dev/null
@@ -0,0 +1,12 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// error-pattern:not yet implemented
+fn main() { unimplemented!() }