summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/byte_char_str.rs
blob: bc3ec5014e89a5b6e6982b88a12c19ae8a2358ef (plain)
1
2
3
4
5
6
7
8
pub fn main ()
{
  let _c = 'x';
  let _bc = b'x';

  let _s = "abc";
  let _bs = b"abc";
}