diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-12-04 09:55:43 +0900 |
|---|---|---|
| committer | Yuki Okushi <jtitor@2k36.org> | 2022-12-04 09:55:43 +0900 |
| commit | 047fda2fc5815aaeac1a262fb9447cf77f1e6ab6 (patch) | |
| tree | 741371e7a6078d28b134176d9995f6b5aac33332 | |
| parent | 23415176968e81e0aac92d0218612a89c4e68a82 (diff) | |
| download | rust-047fda2fc5815aaeac1a262fb9447cf77f1e6ab6.tar.gz rust-047fda2fc5815aaeac1a262fb9447cf77f1e6ab6.zip | |
Add regression test for #79450
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
| -rw-r--r-- | src/test/ui/rfc-2632-const-trait-impl/issue-79450.rs | 20 | ||||
| -rw-r--r-- | src/test/ui/rfc-2632-const-trait-impl/issue-79450.stderr | 12 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/test/ui/rfc-2632-const-trait-impl/issue-79450.rs b/src/test/ui/rfc-2632-const-trait-impl/issue-79450.rs new file mode 100644 index 00000000000..b604c65d751 --- /dev/null +++ b/src/test/ui/rfc-2632-const-trait-impl/issue-79450.rs @@ -0,0 +1,20 @@ +#![feature(const_fmt_arguments_new)] +#![feature(const_trait_impl)] + +#[const_trait] +trait Tr { + fn req(&self); + + fn prov(&self) { + println!("lul"); //~ ERROR: cannot call non-const fn `_print` in constant functions + self.req(); + } +} + +struct S; + +impl const Tr for S { + fn req(&self) {} +} + +fn main() {} diff --git a/src/test/ui/rfc-2632-const-trait-impl/issue-79450.stderr b/src/test/ui/rfc-2632-const-trait-impl/issue-79450.stderr new file mode 100644 index 00000000000..082c0333fbf --- /dev/null +++ b/src/test/ui/rfc-2632-const-trait-impl/issue-79450.stderr @@ -0,0 +1,12 @@ +error[E0015]: cannot call non-const fn `_print` in constant functions + --> $DIR/issue-79450.rs:9:9 + | +LL | println!("lul"); + | ^^^^^^^^^^^^^^^ + | + = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants + = note: this error originates in the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info) + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0015`. |
