react-code-dataset / next.js /.config /ast-grep /rule-tests /resolved-vc-in-trait-arguments-test.yml
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
id: resolved-vc-in-trait-arguments
valid:
- |
#[turbo_tasks::value_trait]
pub trait Example {
fn write_to_disk(self: Vc<Self>);
fn write_to_disk(self: ResolvedVc<Self>) {}
}
invalid:
- |
#[turbo_tasks::value_trait]
pub trait Example {
fn write_to_disk(self: ResolvedVc<Self>);
}