1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: temporarily ignore failing x as y examples for now

This commit is contained in:
Delyan Angelov 2020-11-27 15:28:40 +02:00
parent 7cd9530006
commit 5ba5a53b77

View File

@ -787,7 +787,7 @@ if x is Abc {
``` ```
If you have a struct field which should be checked, there is also a way to name an alias. If you have a struct field which should be checked, there is also a way to name an alias.
```v ```v ignore
struct MyStruct {x int} struct MyStruct {x int}
struct MyStruct2 {y string} struct MyStruct2 {y string}
type MySumType = MyStruct | MyStruct2 type MySumType = MyStruct | MyStruct2
@ -1707,7 +1707,7 @@ if w is Mars {
`w` has type `Mars` inside the body of the `if` statement. This is `w` has type `Mars` inside the body of the `if` statement. This is
known as *flow-sensitive typing*. You can also specify a variable name: known as *flow-sensitive typing*. You can also specify a variable name:
```v oksyntax ```v ignore
if w is Mars as mars { if w is Mars as mars {
assert typeof(w).name == 'World' assert typeof(w).name == 'World'
if mars.dust_storm() { if mars.dust_storm() {
@ -1752,7 +1752,7 @@ There are two ways to access the cast variant inside a match branch:
- the shadowed match variable - the shadowed match variable
- using `as` to specify a variable name - using `as` to specify a variable name
```v ```v ignore
struct Moon {} struct Moon {}
struct Mars {} struct Mars {}
struct Venus {} struct Venus {}