diff options
| author | Philipp Brüschweiler <blei42@gmail.com> | 2013-06-03 13:09:26 +0200 |
|---|---|---|
| committer | Philipp Brüschweiler <blei42@gmail.com> | 2013-06-03 13:09:26 +0200 |
| commit | 45441e046b5de6216fe799bdb4d2d49dfe1bb1d3 (patch) | |
| tree | 1f0ef053d9e44feba8e639c4fdf3aaf015c1b990 /src/test | |
| parent | 4f6285fbf9001bd593e5424cc0f7de5609d8db55 (diff) | |
| download | rust-45441e046b5de6216fe799bdb4d2d49dfe1bb1d3.tar.gz rust-45441e046b5de6216fe799bdb4d2d49dfe1bb1d3.zip | |
Add test for issue #6698
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/compile-fail/call-extern-trait-as-function.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/compile-fail/call-extern-trait-as-function.rs b/src/test/compile-fail/call-extern-trait-as-function.rs new file mode 100644 index 00000000000..86ebeedda67 --- /dev/null +++ b/src/test/compile-fail/call-extern-trait-as-function.rs @@ -0,0 +1,17 @@ +// Copyright 2013 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. + +// issue #6698 + +fn V() -> bool { + std::clone::Clone::clone(true) //~ ERROR error: unresolved name `std::clone::Clone::clone`. +} + +fn main() {} |
