diff --git a/src/librustc/middle/typeck/astconv.rs b/src/librustc/middle/typeck/astconv.rs index e9a95a4a9eb4..cb3e900af7df 100644 --- a/src/librustc/middle/typeck/astconv.rs +++ b/src/librustc/middle/typeck/astconv.rs @@ -433,9 +433,10 @@ pub fn ast_ty_to_builtin_ty`") + supplied to `Box`"); + Some(ty::mk_err()) } _ => None } diff --git a/src/test/compile-fail/issue-14092.rs b/src/test/compile-fail/issue-14092.rs new file mode 100644 index 000000000000..4d663d00fb29 --- /dev/null +++ b/src/test/compile-fail/issue-14092.rs @@ -0,0 +1,14 @@ +// 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +fn fn1(0: Box) {} //~ ERROR: not enough type parameters supplied to `Box` + +fn main() {} +