Skip to content

Instantly share code, notes, and snippets.

Created February 24, 2018 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a929479f88e4de95d4f5b756c30170a1 to your computer and use it in GitHub Desktop.
Save anonymous/a929479f88e4de95d4f5b756c30170a1 to your computer and use it in GitHub Desktop.
pub fn main() void
{
const name: []const u8 = @typeName(u32);
comptime var output: []const u8 = "";
output = output ++ name; // error: expected type '[]const u8', found '&const u8'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment