Skip to content

Commit

Permalink
goto implemented (partially)
Browse files Browse the repository at this point in the history
  • Loading branch information
thradams committed Apr 26, 2024
1 parent 9435a5e commit 2fcf4bf
Show file tree
Hide file tree
Showing 245 changed files with 83,419 additions and 82,678 deletions.
18 changes: 8 additions & 10 deletions src/file.c
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#pragma nullable enable
#pragma ownership enable
#pragma safety enable

struct X {

int i;

};

void f(_View struct X x){}
int main() {

void F(int i);
_Owner int make();
int main()
{
F(make());
}
#pragma cake diagnostic check "-Wmissing-owner-qualifier"

Loading

0 comments on commit 2fcf4bf

Please sign in to comment.