Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing enum variant check #210

Merged
merged 4 commits into from
Mar 24, 2025
Merged

Missing enum variant check #210

merged 4 commits into from
Mar 24, 2025

Conversation

edg-l
Copy link
Member

@edg-l edg-l commented Mar 17, 2025

This program now will error due to the missing variant in the match.

mod opt {
    enum Option<T> {
        Some {
            value: T,
        },
        None,
    }

    fn main() -> i32 {
        let x: Option<i32> = Option::<i32>#Some {
            value: 4
        };

        let mut result: i32 = 0;

        match x {
            Option#Some { value } => {
                return value;
            }
        }
    }
}

image

@edg-l edg-l changed the base branch from main to fix_for_loop March 17, 2025 12:22
Copy link

github-actions bot commented Mar 17, 2025

Benchmarking (Linux) factorial

Compiling factorial (factorial.con)
Finished release in 29.501955ms
Running 5000000 iterations
Using input value: 20
Concrete Result = 2432902008176640000 Time taken : 59.40 ms
Rust Result = 2432902008176640000 Time taken : 60.38 ms

Benchmarking (Linux) fib

Compiling fib (fib.con)
Finished release in 26.01846ms
Running 5000 iterations
Using input value: 20
Concrete Result = 6765 Time taken : 136.66 ms
Rust Result = 6765 Time taken : 86.97 ms

@codecov-commenter
Copy link

codecov-commenter commented Mar 17, 2025

Codecov Report

Attention: Patch coverage is 0% with 36 lines in your changes missing coverage. Please review.

Project coverage is 60.26%. Comparing base (65ed946) to head (ffde6e0).

Files with missing lines Patch % Lines
src/check/mod.rs 0.00% 36 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #210      +/-   ##
==========================================
+ Coverage   60.06%   60.26%   +0.19%     
==========================================
  Files          25       25              
  Lines        4738     4774      +36     
==========================================
+ Hits         2846     2877      +31     
- Misses       1892     1897       +5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link

github-actions bot commented Mar 17, 2025

Benchmarking (macOS) factorial

Compiling factorial (factorial.con)
Finished release in 1.822103167s
Running 5000000 iterations
Using input value: 20
Concrete Result = 2432902008176640000 Time taken : 25.91 ms
Rust Result = 2432902008176640000 Time taken : 40.03 ms

Benchmarking (macOS) fib

Compiling fib (fib.con)
Finished release in 246.913542ms
Running 5000 iterations
Using input value: 20
Concrete Result = 6765 Time taken : 99.88 ms
Rust Result = 6765 Time taken : 149.12 ms

@edg-l edg-l force-pushed the missing_enum_variant_check branch from b1bb7cb to 9dd6330 Compare March 24, 2025 15:28
Base automatically changed from fix_for_loop to main March 24, 2025 15:31
@edg-l edg-l enabled auto-merge March 24, 2025 15:35
@edg-l edg-l added this pull request to the merge queue Mar 24, 2025
Merged via the queue into main with commit 45b018a Mar 24, 2025
8 checks passed
@edg-l edg-l deleted the missing_enum_variant_check branch March 24, 2025 15:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants