about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlec Theriault <alec.theriault@gmail.com>2017-11-06 22:18:14 -0800
committerAlec Theriault <alec.theriault@gmail.com>2017-11-06 22:18:14 -0800
commitaa38a1ee5092fb81e23b0cbd215535de08ae7b28 (patch)
tree02635d4384740b3d71353c9472ee81eb6e4383f3
parent3761c0d246f8deb9ebb83567991bbbc0c090d75d (diff)
downloadrust-aa38a1ee5092fb81e23b0cbd215535de08ae7b28.tar.gz
rust-aa38a1ee5092fb81e23b0cbd215535de08ae7b28.zip
Update comments in cast-lt.pp
-rw-r--r--src/test/pretty/cast-lt.pp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/pretty/cast-lt.pp b/src/test/pretty/cast-lt.pp
index 1e611f5075f..b21158abfe5 100644
--- a/src/test/pretty/cast-lt.pp
+++ b/src/test/pretty/cast-lt.pp
@@ -4,7 +4,7 @@
 use std::prelude::v1::*;
 #[macro_use]
 extern crate std as std;
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// 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.
 //
@@ -18,8 +18,6 @@ extern crate std as std;
 // pretty-mode:expanded
 // pp-exact:cast-lt.pp
 
-// #4264 fixed-length vector types
-
 macro_rules! negative(( $ e : expr ) => { $ e < 0 });
 
 fn main() { (1 as i32) < 0; }