mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: fix test
This commit is contained in:
parent
75c2ef7947
commit
eb57f192d4
@ -567,6 +567,7 @@ fn test_quote() {
|
||||
|
||||
fn test_ustring_comparisons() {
|
||||
/*
|
||||
QTODO
|
||||
assert ('h€llô !'.ustring() == 'h€llô !'.ustring()) == true
|
||||
assert ('h€llô !'.ustring() == 'h€llô'.ustring()) == false
|
||||
assert ('h€llô !'.ustring() == 'h€llo !'.ustring()) == false
|
||||
|
@ -127,7 +127,7 @@ int get_int2() {
|
||||
|
||||
void myuser() {
|
||||
int x = 1;
|
||||
int q = x | 4100;
|
||||
int q = x | 0x1004;
|
||||
User user = (User){
|
||||
.age = 30,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user