Sign in
webkit
/
WebKit
/
6081ea9a1257c54e568dd63d093b5b8b413bd159
/
.
/
LayoutTests
/
fast
/
canvas
/
webgl
/
shaders
/
implicit
/
construct_struct.vert
blob: 28a8eccd50351b9b8f450936f53374c91a93b988 [
file
] [
log
] [
blame
]
// implicit cast from int to float in struct initializer should fail
struct
Foo
{
float
bar
;
};
void
main
()
{
Foo
foo
=
Foo
(
1
);
}