-
Notifications
You must be signed in to change notification settings - Fork 160
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
For something simple as:
struct String {
long size;
long capacity;
String() : size{0}, capacity{0} {}
String(char const *s) : size{strlen(s)}, capacity{size} {}
};
We can emit CIR but not read it back:
error: expected '=' in type alias definition
!22struct2EString22 = !cir.struct<"struct.String", i64, i64>
^
We probably need some CIR specific prefix here or something.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers