From 477989933ddcab1c5a007a3b65a495ec3081047a Mon Sep 17 00:00:00 2001 From: colinmarsh19 <32608057+colinmarsh19@users.noreply.github.com> Date: Sat, 25 Nov 2017 19:26:47 -0700 Subject: [PATCH] UI test 46186 --- src/test/ui/issue-46186 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/test/ui/issue-46186 diff --git a/src/test/ui/issue-46186 b/src/test/ui/issue-46186 new file mode 100644 index 0000000000000..2924bec567fb4 --- /dev/null +++ b/src/test/ui/issue-46186 @@ -0,0 +1,15 @@ +// 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +struct Struct { + a: usize, +}; //~ ERROR expected item, found ';' + +fn main() {}