commit
44a981ea68
49 changed files with 213 additions and 113 deletions
@ -1,7 +1,22 @@ |
||||
struct vec4 |
||||
{ |
||||
static int length(); |
||||
}; |
||||
|
||||
int vec4::length() |
||||
{ |
||||
return 4; |
||||
} |
||||
|
||||
int main() |
||||
{ |
||||
int Failed = 0; |
||||
|
||||
vec4 V; |
||||
|
||||
int LengthA = V.length(); |
||||
int LengthB = vec4::length(); |
||||
|
||||
return Failed; |
||||
} |
||||
|
||||
|
Loading…
Reference in New Issue