Skip to content

Commit 3557d8b

Browse files
committed
add a failed test case
1 parent eb06045 commit 3557d8b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<script setup>
2+
// @ts-check
3+
import { exactType } from '../../shared';
4+
import Self from './regression.vue';
5+
6+
const props = defineProps({
7+
msg: {
8+
type: String,
9+
default: null
10+
},
11+
msgExact: {
12+
type: String,
13+
},
14+
});
15+
16+
exactType((new Self()).$props.msg, props.msgExact);
17+
</script>

0 commit comments

Comments
 (0)