Skip to content

Commit

Permalink
add a failed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Oct 26, 2024
1 parent eb06045 commit 3557d8b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test-workspace/tsc/passedFixtures/vue3/#4876/regression.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<script setup>
// @ts-check
import { exactType } from '../../shared';
import Self from './regression.vue';
const props = defineProps({
msg: {
type: String,
default: null
},
msgExact: {
type: String,
},
});
exactType((new Self()).$props.msg, props.msgExact);
</script>

0 comments on commit 3557d8b

Please sign in to comment.