ngrc version works?
This commit is contained in:
@@ -3,6 +3,8 @@ struct Point {
|
||||
y: u64;
|
||||
}
|
||||
|
||||
v = 1u64;
|
||||
|
||||
function getX(p: Point) -> u64
|
||||
p.x;
|
||||
|
||||
|
||||
13
examples/basic/broken0003.ngr
Normal file
13
examples/basic/broken0003.ngr
Normal file
@@ -0,0 +1,13 @@
|
||||
struct Point {
|
||||
x: u64;
|
||||
y: u64;
|
||||
}
|
||||
|
||||
test = Point {
|
||||
x: 1;
|
||||
y: 2;
|
||||
};
|
||||
|
||||
foo = test.x;
|
||||
|
||||
print foo;
|
||||
Reference in New Issue
Block a user