diff options
| author | Subhash Bhushan <subhash.bhushan@kaybus.com> | 2014-11-05 00:20:05 +0530 |
|---|---|---|
| committer | Subhash Bhushan <subhash.bhushan@kaybus.com> | 2014-11-06 19:17:50 +0530 |
| commit | 2cde618b1740ad9f50df82e1bcde169b356f51cb (patch) | |
| tree | 9ebe55926c3eb7ae35843577471edf390cc2f4f8 /src | |
| parent | e84e7a00ddec76570bbaa9afea385d544f616814 (diff) | |
| download | rust-2cde618b1740ad9f50df82e1bcde169b356f51cb.tar.gz rust-2cde618b1740ad9f50df82e1bcde169b356f51cb.zip | |
Make Filetype Clonable
Diffstat (limited to 'src')
| -rw-r--r-- | src/libstd/io/mod.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/issue-18619.rs | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index ebf541a63da..0531563bcb3 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1737,7 +1737,7 @@ pub enum FileAccess { } /// Different kinds of files which can be identified by a call to stat -#[deriving(PartialEq, Show, Hash)] +#[deriving(PartialEq, Show, Hash, Clone)] pub enum FileType { /// This is a normal file, corresponding to `S_IFREG` TypeFile, diff --git a/src/test/run-pass/issue-18619.rs b/src/test/run-pass/issue-18619.rs new file mode 100644 index 00000000000..70ccc20e01a --- /dev/null +++ b/src/test/run-pass/issue-18619.rs @@ -0,0 +1,15 @@ +// 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 <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. + +use std::io::FileType; + +pub fn main() { + let _ = FileType::TypeFile.clone(); +} |
