mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
18 lines
507 B
YAML
18 lines
507 B
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
cases:
|
|
- note: deep-parens-over-limit
|
|
rego: |
|
|
package test
|
|
x = ((((((((((((((((((((((((((((((((1))))))))))))))))))))))))))))))))
|
|
error: "expression nesting too deep"
|
|
skip: true
|
|
|
|
- note: compr-mixed-deep
|
|
rego: |
|
|
package test
|
|
x = (1 + ( 2 + ( 3 + ( 4 + ((((((( [ [ 1 + (2 + ((((((((((((((((((((1))))))))))))))))))))) | true ] | true ] )))))))))))))
|
|
error: "expression nesting too deep"
|
|
|