Rollup merge of #43752 - arshiamufti:union-test, r=estebank

Add IRC's `!union union` as a test, addresses #43553

This pull request adds a new test, `union` to `weird-exprs.rs`.
This commit is contained in:
Guillaume Gomez
2017-08-11 10:20:26 +02:00
committed by GitHub
+5
View File
@@ -107,6 +107,10 @@ fn fishy() {
String::<>::from::<>("><>").chars::<>().rev::<>().collect::<String>());
}
fn union() {
union union<'union> { union: &'union union<'union>, }
}
pub fn main() {
strange();
funny();
@@ -119,4 +123,5 @@ pub fn main() {
dots();
you_eight();
fishy();
union();
}