summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-47377.rs
blob: 7a2e0fe6d21df4a0099f9c93aea7064172733d17 (plain)
1
2
3
4
5
6
// ignore-tidy-tab
fn main() {
 	let b = "hello";
 	let _a = b + ", World!";
 	//~^ ERROR E0369
}