Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
issue-3538.rs
blob: 72694571f888efa9567383c748f8a91a72231a28 [
file
] [
log
] [
blame
]
enum
A
{
Value
(()),
}
fn
main
()
{
let
a
=
A
::
Value
(());
a
==
A
::
Value
;
// { dg-error "variant expected constructor call" "" { target *-*-* } .-1 }
}