about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authormatthewjasper <mjjasper1@gmail.com>2017-10-19 19:48:57 +0100
committermatthewjasper <mjjasper1@gmail.com>2017-10-19 19:48:57 +0100
commit02635c2d37b7f0a012c9fae1d67723513f3d19c8 (patch)
tree75c68ab6d0981ede5f5fc913fb7fa4d324d062b3 /src/test
parent6c0d50f9fabe78fa8497041c14ce73787a4aef87 (diff)
downloadrust-02635c2d37b7f0a012c9fae1d67723513f3d19c8.tar.gz
rust-02635c2d37b7f0a012c9fae1d67723513f3d19c8.zip
Cleanly error for non-const expression in associated const
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/issue-44239.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-44239.rs b/src/test/compile-fail/issue-44239.rs
new file mode 100644
index 00000000000..131c6526642
--- /dev/null
+++ b/src/test/compile-fail/issue-44239.rs
@@ -0,0 +1,19 @@
+// Copyright 2017 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.
+
+fn main() {
+    let n = 0;
+
+    struct Foo;
+    impl Foo {
+        const N: usize = n;
+        //~^ ERROR attempt to use a non-constant value
+    }
+}