cluConcatBytes 0.1.5

Merges literals into a static array.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#![feature(plugin)]
#![plugin(cluConcatBytes)]

//ATTENTION!!!
//
//For display of panic 'RLS or Rust Check' it is required to uncomment functions.

fn main() {
	let _c_str4 = concat_bytes!(
		b'c', b'l', b'u', 0u8,
		b'W', b'o', b'r', b'l', b'd' //, <--- Add
		//0 <---
	);
	//PANIC! incorrect data!
}